revert last 2 commits

This commit is contained in:
mik1893
2016-07-08 21:25:31 +01:00
parent 72a182cbc3
commit 13c8394bf1
2539 changed files with 2153 additions and 428 deletions
+9
View File
@@ -0,0 +1,9 @@
CREATE TABLE `channels` (
`channelId` int(10) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(128) NOT NULL,
`team` int(10) unsigned NOT NULL,
`announce` tinyint(3) unsigned NOT NULL DEFAULT '1',
`password` varchar(32) DEFAULT NULL,
`lastUsed` int(10) unsigned NOT NULL,
PRIMARY KEY (`channelId`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='Channel System';