X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=extras%2Fm_sqloper.mysql.sql;h=a8a2b7e1db9049dd81f361b5701493db9e23b495;hb=923d811b0564db891d7cb97c1ea81a5c901ff3a5;hp=f4349580682b2903d2f21156cb3214fb53c39b86;hpb=d23c030c9a8fd58807438245a004e4aa5b7288ba;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/extras/m_sqloper.mysql.sql b/extras/m_sqloper.mysql.sql index f43495806..a8a2b7e1d 100644 --- a/extras/m_sqloper.mysql.sql +++ b/extras/m_sqloper.mysql.sql @@ -1,9 +1,12 @@ CREATE TABLE ircd_opers ( id bigint(20) NOT NULL auto_increment, - 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 tinyint(1) NOT NULL DEFAULT 0, active tinyint(1) NOT NULL DEFAULT 1, PRIMARY KEY (id) ) ENGINE=MyISAM;