
Fixes #5062 Thanks to @Atemo and @aleos89 Co-authored-by: Atemo <Atemo@users.noreply.github.com> Co-authored-by: Aleos <aleos89@users.noreply.github.com>
11 lines
265 B
SQL
11 lines
265 B
SQL
--
|
|
-- 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;
|