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:
Andyyy7666
2022-07-30 01:57:25 +02:00
committed by GitHub
parent cc5ffe159c
commit 00393fe08a

View File

@@ -9,5 +9,6 @@ CREATE TABLE `characters` (
`job` VARCHAR(50) NULL DEFAULT NULL,
`cash` INT(10) NULL DEFAULT '0',
`bank` INT(10) NULL DEFAULT '0',
`phone_number` VARCHAR(20) DEFAULT NULL,
PRIMARY KEY (`character_id`) USING BTREE
);
);