rathena/sql-files/item_cash_db2.sql
Vincent Stumpf 3776bfbaa3
Support itemids up to ~2 billion (#5141)
Co-authored-by: aleos89 <aleos89@users.noreply.github.com>
Co-authored-by: Lemongrass3110 <lemongrass@kstp.at>
2020-08-08 12:06:07 +02:00

8 lines
242 B
SQL

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