]> jfr.im git - erebus.git/blame - dump.sql
update comments
[erebus.git] / dump.sql
CommitLineData
d9a40fff 1-- MariaDB dump 10.19 Distrib 10.11.4-MariaDB, for debian-linux-gnu (x86_64)
ac347a9c 2--
d9a40fff 3-- Host: localhost Database: erebus2
ac347a9c 4-- ------------------------------------------------------
d9a40fff 5-- Server version 10.11.4-MariaDB-1~deb12u1
ac347a9c 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 */;
d9a40fff 10/*!40101 SET NAMES utf8mb4 */;
ac347a9c 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
22DROP TABLE IF EXISTS `bots`;
23/*!40101 SET @saved_cs_client = @@character_set_client */;
24/*!40101 SET character_set_client = utf8 */;
25CREATE TABLE `bots` (
26 `nick` varchar(30) NOT NULL,
27 `user` varchar(10) NOT NULL DEFAULT 'erebus',
28 `bind` varchar(15) DEFAULT NULL,
e39991e5 29 `authname` varchar(30) DEFAULT NULL,
30 `authpass` varchar(20) DEFAULT NULL,
d9a40fff
JR
31 `active` tinyint(1) NOT NULL DEFAULT 1,
32 `connected` tinyint(1) NOT NULL DEFAULT 0,
ac347a9c 33 PRIMARY KEY (`nick`)
d9a40fff 34) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
ac347a9c 35/*!40101 SET character_set_client = @saved_cs_client */;
36
37--
38-- Dumping data for table `bots`
39--
40
41LOCK TABLES `bots` WRITE;
42/*!40000 ALTER TABLE `bots` DISABLE KEYS */;
d9a40fff
JR
43INSERT INTO `bots` VALUES
44('Erebus','Erebus',NULL,'Erebus','',1,0);
ac347a9c 45/*!40000 ALTER TABLE `bots` ENABLE KEYS */;
46UNLOCK TABLES;
47
48--
49-- Table structure for table `chans`
50--
51
52DROP TABLE IF EXISTS `chans`;
53/*!40101 SET @saved_cs_client = @@character_set_client */;
54/*!40101 SET character_set_client = utf8 */;
55CREATE TABLE `chans` (
56 `chname` varchar(100) NOT NULL,
57 `bot` varchar(30) NOT NULL,
d9a40fff 58 `active` tinyint(1) NOT NULL DEFAULT 1,
ac347a9c 59 PRIMARY KEY (`chname`),
60 KEY `bot` (`bot`)
d9a40fff 61) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
ac347a9c 62/*!40101 SET character_set_client = @saved_cs_client */;
63
64--
65-- Dumping data for table `chans`
66--
67
68LOCK TABLES `chans` WRITE;
69/*!40000 ALTER TABLE `chans` DISABLE KEYS */;
d9a40fff
JR
70INSERT INTO `chans` VALUES
71('#','Erebus',1);
ac347a9c 72/*!40000 ALTER TABLE `chans` ENABLE KEYS */;
73UNLOCK TABLES;
e39991e5 74
5477b368 75--
76-- Table structure for table `chusers`
77--
78
79DROP TABLE IF EXISTS `chusers`;
80/*!40101 SET @saved_cs_client = @@character_set_client */;
81/*!40101 SET character_set_client = utf8 */;
82CREATE 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`)
d9a40fff 87) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
5477b368 88/*!40101 SET character_set_client = @saved_cs_client */;
89
90--
91-- Dumping data for table `chusers`
92--
93
94LOCK TABLES `chusers` WRITE;
95/*!40000 ALTER TABLE `chusers` DISABLE KEYS */;
d9a40fff
JR
96INSERT INTO `chusers` VALUES
97('#','dimecadmium',5);
5477b368 98/*!40000 ALTER TABLE `chusers` ENABLE KEYS */;
99UNLOCK TABLES;
100
e39991e5 101--
102-- Table structure for table `users`
103--
104
105DROP TABLE IF EXISTS `users`;
106/*!40101 SET @saved_cs_client = @@character_set_client */;
107/*!40101 SET character_set_client = utf8 */;
108CREATE TABLE `users` (
109 `auth` varchar(30) NOT NULL,
c06c539a 110 `level` tinyint(3) NOT NULL,
e39991e5 111 PRIMARY KEY (`auth`)
d9a40fff 112) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
e39991e5 113/*!40101 SET character_set_client = @saved_cs_client */;
114
115--
116-- Dumping data for table `users`
117--
118
119LOCK TABLES `users` WRITE;
120/*!40000 ALTER TABLE `users` DISABLE KEYS */;
d9a40fff
JR
121INSERT INTO `users` VALUES
122('dimecadmium',100);
e39991e5 123/*!40000 ALTER TABLE `users` ENABLE KEYS */;
124UNLOCK TABLES;
ac347a9c 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
d9a40fff 135-- Dump completed on 2023-11-16 13:28:38