rathena/sql-files/item_cash_db2.sql
Lemongrass3110 2c58017c4e Added missing empty newlines
Also fixed the newlines in logs.sql
2016-09-05 19:25:53 +02:00

8 lines
246 B
SQL

DROP TABLE IF EXISTS `item_cash_db2`;
CREATE TABLE `item_cash_db2` (
`tab` smallint(6) NOT NULL,
`item_id` smallint(5) unsigned NOT NULL,
`price` mediumint(10) unsigned NOT NULL DEFAULT '0',
PRIMARY KEY (`tab`,`item_id`)
) ENGINE=MyISAM;