X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=extras%2Fm_sqloper.sqlite3.sql;h=6aec5a1185a6e5192017b15a909d1dc27c6a61c4;hb=f8a9b6ba4ae0b4b3c7b2a408332230dd82eb4608;hp=1bb2937b8d146ea208016f652f9ef45d87b6bf9a;hpb=5f38399fc6bc98a37a606e6de4050900fe6ff305;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/extras/m_sqloper.sqlite3.sql b/extras/m_sqloper.sqlite3.sql index 1bb2937b8..6aec5a118 100644 --- a/extras/m_sqloper.sqlite3.sql +++ b/extras/m_sqloper.sqlite3.sql @@ -1,7 +1,10 @@ CREATE TABLE ircd_opers ( id integer primary key, -username text, -password text, -hostname text, -type text); - +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);