]> jfr.im git - erebus.git/blob - dump.sql
update comments
[erebus.git] / dump.sql
1 -- MariaDB dump 10.19 Distrib 10.11.4-MariaDB, for debian-linux-gnu (x86_64)
2 --
3 -- Host: localhost Database: erebus2
4 -- ------------------------------------------------------
5 -- Server version 10.11.4-MariaDB-1~deb12u1
6
7 /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
8 /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
9 /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
10 /*!40101 SET NAMES utf8mb4 */;
11 /*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
12 /*!40103 SET TIME_ZONE='+00:00' */;
13 /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
14 /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
15 /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
16 /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
17
18 --
19 -- Table structure for table `bots`
20 --
21
22 DROP TABLE IF EXISTS `bots`;
23 /*!40101 SET @saved_cs_client = @@character_set_client */;
24 /*!40101 SET character_set_client = utf8 */;
25 CREATE TABLE `bots` (
26 `nick` varchar(30) NOT NULL,
27 `user` varchar(10) NOT NULL DEFAULT 'erebus',
28 `bind` varchar(15) DEFAULT NULL,
29 `authname` varchar(30) DEFAULT NULL,
30 `authpass` varchar(20) DEFAULT NULL,
31 `active` tinyint(1) NOT NULL DEFAULT 1,
32 `connected` tinyint(1) NOT NULL DEFAULT 0,
33 PRIMARY KEY (`nick`)
34 ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
35 /*!40101 SET character_set_client = @saved_cs_client */;
36
37 --
38 -- Dumping data for table `bots`
39 --
40
41 LOCK TABLES `bots` WRITE;
42 /*!40000 ALTER TABLE `bots` DISABLE KEYS */;
43 INSERT INTO `bots` VALUES
44 ('Erebus','Erebus',NULL,'Erebus','',1,0);
45 /*!40000 ALTER TABLE `bots` ENABLE KEYS */;
46 UNLOCK TABLES;
47
48 --
49 -- Table structure for table `chans`
50 --
51
52 DROP TABLE IF EXISTS `chans`;
53 /*!40101 SET @saved_cs_client = @@character_set_client */;
54 /*!40101 SET character_set_client = utf8 */;
55 CREATE TABLE `chans` (
56 `chname` varchar(100) NOT NULL,
57 `bot` varchar(30) NOT NULL,
58 `active` tinyint(1) NOT NULL DEFAULT 1,
59 PRIMARY KEY (`chname`),
60 KEY `bot` (`bot`)
61 ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
62 /*!40101 SET character_set_client = @saved_cs_client */;
63
64 --
65 -- Dumping data for table `chans`
66 --
67
68 LOCK TABLES `chans` WRITE;
69 /*!40000 ALTER TABLE `chans` DISABLE KEYS */;
70 INSERT INTO `chans` VALUES
71 ('#','Erebus',1);
72 /*!40000 ALTER TABLE `chans` ENABLE KEYS */;
73 UNLOCK TABLES;
74
75 --
76 -- Table structure for table `chusers`
77 --
78
79 DROP TABLE IF EXISTS `chusers`;
80 /*!40101 SET @saved_cs_client = @@character_set_client */;
81 /*!40101 SET character_set_client = utf8 */;
82 CREATE TABLE `chusers` (
83 `chan` varchar(100) NOT NULL,
84 `user` varchar(30) NOT NULL,
85 `level` int(11) NOT NULL,
86 PRIMARY KEY (`chan`,`user`)
87 ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
88 /*!40101 SET character_set_client = @saved_cs_client */;
89
90 --
91 -- Dumping data for table `chusers`
92 --
93
94 LOCK TABLES `chusers` WRITE;
95 /*!40000 ALTER TABLE `chusers` DISABLE KEYS */;
96 INSERT INTO `chusers` VALUES
97 ('#','dimecadmium',5);
98 /*!40000 ALTER TABLE `chusers` ENABLE KEYS */;
99 UNLOCK TABLES;
100
101 --
102 -- Table structure for table `users`
103 --
104
105 DROP TABLE IF EXISTS `users`;
106 /*!40101 SET @saved_cs_client = @@character_set_client */;
107 /*!40101 SET character_set_client = utf8 */;
108 CREATE TABLE `users` (
109 `auth` varchar(30) NOT NULL,
110 `level` tinyint(3) NOT NULL,
111 PRIMARY KEY (`auth`)
112 ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
113 /*!40101 SET character_set_client = @saved_cs_client */;
114
115 --
116 -- Dumping data for table `users`
117 --
118
119 LOCK TABLES `users` WRITE;
120 /*!40000 ALTER TABLE `users` DISABLE KEYS */;
121 INSERT INTO `users` VALUES
122 ('dimecadmium',100);
123 /*!40000 ALTER TABLE `users` ENABLE KEYS */;
124 UNLOCK TABLES;
125 /*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
126
127 /*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
128 /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
129 /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
130 /*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
131 /*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
132 /*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
133 /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
134
135 -- Dump completed on 2023-11-16 13:28:38