Improved washing money code, README cleanup

This commit is contained in:
ElPumpo
2018-05-07 22:14:59 +02:00
parent 73f0a7cb10
commit fce1da377e
4 changed files with 64 additions and 65 deletions
+6 -7
View File
@@ -1,11 +1,10 @@
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`)
`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`)
);