rathena/sql-files/upgrades/upgrade_20220121.sql
Lemongrass3110 e40da669ed
Initial release of barter shops (#6508)
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>
2022-01-21 00:59:16 +01:00

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;