mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 22:01:37 +00:00
6cda7ed2f5
int - Integer display width is deprecated and will be removed in a future release.
11 lines
207 B
SQL
11 lines
207 B
SQL
USE `es_extended`;
|
|
|
|
CREATE TABLE `society_moneywash` (
|
|
`id` int NOT NULL AUTO_INCREMENT,
|
|
`identifier` varchar(60) NOT NULL,
|
|
`society` varchar(60) NOT NULL,
|
|
`amount` int NOT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
);
|