Files
esx_core/esx_society.sql
T
2018-05-07 22:14:59 +02:00

11 lines
217 B
SQL

USE `essentialmode`;
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`)
);