Files
esx_core/esx_society.sql
T
2020-04-14 16:53:06 +02:00

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