Update esx_society.sql

int - Integer display width is deprecated and will be removed in a future release.
This commit is contained in:
shortybsd
2020-05-16 18:51:19 -05:00
committed by GitHub
parent 083dcddfe2
commit 6cda7ed2f5
+2 -2
View File
@@ -1,10 +1,10 @@
USE `es_extended`;
CREATE TABLE `society_moneywash` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id` int NOT NULL AUTO_INCREMENT,
`identifier` varchar(60) NOT NULL,
`society` varchar(60) NOT NULL,
`amount` int(11) NOT NULL,
`amount` int NOT NULL,
PRIMARY KEY (`id`)
);