mirror of
https://github.com/araxiaonline/mod-premium.git
synced 2026-06-13 02:52:20 -04:00
9 lines
282 B
SQL
9 lines
282 B
SQL
-- ----------------------------
|
|
-- Table structure for premium
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `premium`;
|
|
CREATE TABLE `premium` (
|
|
`AccountId` int(11) unsigned NOT NULL,
|
|
`active` int(11) unsigned NOT NULL default '1'
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
|