From 00393fe08a2b9723afce726f57b6718e97ab79f8 Mon Sep 17 00:00:00 2001 From: Andyyy7666 <86536434+Andyyy7666@users.noreply.github.com> Date: Sat, 30 Jul 2022 01:57:25 +0200 Subject: [PATCH] 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; --- ND_Core/query.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ND_Core/query.sql b/ND_Core/query.sql index 606586a..0cf7bc3 100644 --- a/ND_Core/query.sql +++ b/ND_Core/query.sql @@ -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 -); \ No newline at end of file +);