mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
7 lines
181 B
SQL
7 lines
181 B
SQL
DROP TABLE IF EXISTS `premium`;
|
|
|
|
CREATE TABLE `premium` (
|
|
`AccountId` int unsigned NOT NULL,
|
|
`active` int unsigned NOT NULL DEFAULT '1'
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|
|
|