X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=extras%2Fm_sqloper.sqlite3.sql;h=6aec5a1185a6e5192017b15a909d1dc27c6a61c4;hb=f8a9b6ba4ae0b4b3c7b2a408332230dd82eb4608;hp=1c607e664e8afa84ca8d80a60fc6d65af8068e6c;hpb=c0aba5b728b0a921d95ec120aa638dab1520b42f;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/extras/m_sqloper.sqlite3.sql b/extras/m_sqloper.sqlite3.sql index 1c607e664..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);