Files
esx_core/modules/society/migrations/0.sql
T
2020-05-11 19:23:02 +02:00

11 lines
229 B
SQL

USE `es_extended`;
CREATE TABLE IF NOT EXISTS `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`)
);