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.
11 lines
265 B
MySQL
11 lines
265 B
MySQL
4 months ago
|
--
|
||
|
-- 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;
|