mirror of
https://github.com/esx-framework/esx_core.git
synced 2026-08-30 17:58:54 +00:00
11 lines
215 B
SQL
11 lines
215 B
SQL
USE `es_extended`;
|
|
|
|
CREATE TABLE `society_moneywash` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`identifier` varchar(60) NOT NULL,
|
|
`society` varchar(60) NOT NULL,
|
|
`amount` int(11) NOT NULL,
|
|
|
|
PRIMARY KEY (`id`)
|
|
);
|