mirror of
https://github.com/telegramcores/mod-premium.git
synced 2026-01-13 00:58:36 +00: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;
|