added new auth-check security feature
[NeonServV5.git] / database.sql
index 9f3ee1c39b023b01abb3925d0dd06b2dcd7d56bf..fbc3b4048e04d1fab31e215290b7368216303be2 100644 (file)
@@ -102,8 +102,10 @@ CREATE TABLE IF NOT EXISTS `channels` (
   `channel_staticban` smallint(3) DEFAULT NULL,
   `channel_protect` tinyint(1) DEFAULT NULL,
   `channel_canop` smallint(3) DEFAULT NULL,
+  `channel_canhalfop` smallint(3) DEFAULT NULL,
   `channel_canvoice` smallint(3) DEFAULT NULL,
   `channel_getop` smallint(3) DEFAULT NULL,
+  `channel_gethalfop` smallint(3) DEFAULT NULL,
   `channel_getvoice` smallint(3) DEFAULT NULL,
   `channel_greeting` varchar(512) NOT NULL,
   `channel_usergreeting` varchar(512) NOT NULL,
@@ -315,6 +317,8 @@ CREATE TABLE IF NOT EXISTS `users` (
   `user_god` tinyint(1) NOT NULL,
   `user_lang` varchar(6) NOT NULL,
   `user_reply_privmsg` tinyint(1) NOT NULL,
+  `user_registered` INT(20) NOT NULL,
+  `user_lastcheck` INT(20) NOT NULL,
   PRIMARY KEY (`user_id`),
   UNIQUE KEY `user_user` (`user_user`)
 ) ENGINE=MyISAM  DEFAULT CHARSET=latin1;