You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
--
|
|
-- Table `barter` for barter shop persistency
|
|
--
|
|
|
|
CREATE TABLE IF NOT EXISTS `barter` (
|
|
`name` varchar(50) NOT NULL DEFAULT '',
|
|
`index` SMALLINT(5) UNSIGNED NOT NULL,
|
|
`amount` SMALLINT(5) UNSIGNED NOT NULL,
|
|
PRIMARY KEY (`name`,`index`)
|
|
) ENGINE=MyISAM;
|