]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - extras/m_sqloper.sqlite3.sql
Make more config stuff case insensitive.
[user/henk/code/inspircd.git] / extras / m_sqloper.sqlite3.sql
index e33f77a934dca5702adb74c66e9fa3d8b0fedbb5..6aec5a1185a6e5192017b15a909d1dc27c6a61c4 100644 (file)
@@ -1 +1,10 @@
-CREATE TABLE ircd_opers (\rid integer primary key,\rusername text,\rpassword text,\rhostname text,\rtype text);\r\r
\ No newline at end of file
+CREATE TABLE ircd_opers (
+id integer primary key,
+name text NOT NULL,
+password text NOT NULL,
+hash text,
+host text NOT NULL,
+type text NOT NULL,
+fingerprint text,
+autologin integer NOT NULL DEFAULT 0,
+active integer NOT NULL DEFAULT 1);