feat: banking sql

This commit is contained in:
Benzo
2022-09-11 03:31:18 +02:00
parent 794f5e4917
commit 70eddcb489
+9 -3
View File
@@ -1022,8 +1022,14 @@ INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_
--
CREATE TABLE IF NOT EXISTS `banking` (
`identifier` varchar(50) DEFAULT NULL,
`identifier` varchar(46) DEFAULT NULL,
`type` varchar(50) DEFAULT NULL,
`amount` int(64) DEFAULT NULL,
`time` date DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
`time` bigint(20) DEFAULT NULL,
`ID` int(11) NOT NULL AUTO_INCREMENT,
`balance` int(11) DEFAULT 0,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4;
ALTER TABLE `users` ADD COLUMN `pincode` INT NULL;