
Added a permission for the cashshop sales Thanks to @Angelic234 and everyone else who tested this feature while it was sleeping waiting in a pull request. Thanks to @aleos89, @secretdataz and @lighta for reviewing and commenting.
12 lines
302 B
SQL
12 lines
302 B
SQL
-- ----------------------------
|
|
-- Table structure for `sales`
|
|
-- ----------------------------
|
|
|
|
CREATE TABLE IF NOT EXISTS `sales` (
|
|
`nameid` smallint(5) unsigned NOT NULL,
|
|
`start` datetime NOT NULL,
|
|
`end` datetime NOT NULL,
|
|
`amount` int(11) NOT NULL,
|
|
PRIMARY KEY (`nameid`)
|
|
) ENGINE=MyISAM;
|