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

8 lines
244 B
SQL

DROP TABLE IF EXISTS `item_cash_db`;
CREATE TABLE `item_cash_db` (
`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;