X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=extras%2Fm_sqloper.mysql.sql;h=f4349580682b2903d2f21156cb3214fb53c39b86;hb=00c0409dd47fe985abf0f8d32cd66c8ef81fe708;hp=ee993c7719fa98d07ffbddd5c14fcd837b2e6e19;hpb=bab14f0dd2345c9d7dcbc47c918563709e1ac094;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/extras/m_sqloper.mysql.sql b/extras/m_sqloper.mysql.sql index ee993c771..f43495806 100644 --- a/extras/m_sqloper.mysql.sql +++ b/extras/m_sqloper.mysql.sql @@ -1 +1,9 @@ --- MySQL dump 9.11 -- -- Host: localhost Database: brain -- ------------------------------------------------------ -- Server version 4.0.20 -- -- Table structure for table `ircd_opers` -- CREATE TABLE ircd_opers ( id bigint(20) NOT NULL auto_increment, username text, password text, hostname text, type text, PRIMARY KEY (id) ) TYPE=MyISAM; -- -- Dumping data for table `ircd_opers` -- \ No newline at end of file +CREATE TABLE ircd_opers ( + id bigint(20) NOT NULL auto_increment, + username text, + password text, + hostname text, + type text, + active tinyint(1) NOT NULL DEFAULT 1, + PRIMARY KEY (id) +) ENGINE=MyISAM;