
Co-authored-by: aleos89 <aleos89@users.noreply.github.com> Co-authored-by: Lemongrass3110 <lemongrass@kstp.at>
8 lines
242 B
SQL
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;
|