mirror of
https://github.com/ND-Framework/ND_Core.git
synced 2026-08-18 22:36:03 +01:00
Added phone number
This will be used with npwd integration If you want to add it without dropping your database then use the code below. ALTER TABLE characters ADD COLUMN `phone_number` VARCHAR(20) DEFAULT NULL;
This commit is contained in:
@@ -9,5 +9,6 @@ CREATE TABLE `characters` (
|
|||||||
`job` VARCHAR(50) NULL DEFAULT NULL,
|
`job` VARCHAR(50) NULL DEFAULT NULL,
|
||||||
`cash` INT(10) NULL DEFAULT '0',
|
`cash` INT(10) NULL DEFAULT '0',
|
||||||
`bank` INT(10) NULL DEFAULT '0',
|
`bank` INT(10) NULL DEFAULT '0',
|
||||||
|
`phone_number` VARCHAR(20) DEFAULT NULL,
|
||||||
PRIMARY KEY (`character_id`) USING BTREE
|
PRIMARY KEY (`character_id`) USING BTREE
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user