Files
l2j_mobius/trunk/dist/sql/game/account_gsdata.sql
mobius a6a3718849
2015-01-01 20:02:50 +00:00

7 lines
245 B
SQL

CREATE TABLE IF NOT EXISTS `account_gsdata` (
`account_name` VARCHAR(45) NOT NULL DEFAULT '',
`var` VARCHAR(255) NOT NULL DEFAULT '',
`value` text NOT NULL,
PRIMARY KEY (`account_name`,`var`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;