Files
esx_core/esx_society.sql
T
2017-08-07 12:19:53 +02:00

12 lines
227 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`)
);