Merge branch 'development'
[NeonServV5.git] / database.sql
index d913d55e36c782340ef10f77194970a7464832ab..d3781181034f7a3bc4f115b9ec8fc7626309ab4a 100644 (file)
@@ -38,6 +38,7 @@ CREATE TABLE IF NOT EXISTS `bots` (
   `botclass` int(10) NOT NULL,
   `textbot` tinyint(1) NOT NULL,
   `queue` tinyint(1) NOT NULL,
+  `secret` tinyint(1) NOT NULL,
   `defaulttrigger` varchar(10) NOT NULL,
   `max_channels` int(5) NOT NULL,
   `register_priority` int(2) NOT NULL,
@@ -322,6 +323,7 @@ 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_block_invites` tinyint(1) NOT NULL,
   `user_registered` INT(20) NOT NULL,
   `user_lastcheck` INT(20) NOT NULL,
   PRIMARY KEY (`user_id`),