rathena/sql-files/upgrades/upgrade_20170215.sql
Lemongrass3110 aaa4ea919e Initial release of the cash shop sales (#1825)
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.
2017-02-15 14:04:18 +01:00

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;