]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - extras/m_sqloper.mysql.sql
Add a module for hiding mode changes from unprivileged users.
[user/henk/code/inspircd.git] / extras / m_sqloper.mysql.sql
1 CREATE TABLE ircd_opers (
2   id bigint(20) NOT NULL auto_increment,
3   name text NOT NULL,
4   password text NOT NULL,
5   hash text,
6   host text NOT NULL,
7   type text NOT NULL,
8   fingerprint text,
9   autologin tinyint(1) NOT NULL DEFAULT 0,
10   active tinyint(1) NOT NULL DEFAULT 1,
11   PRIMARY KEY  (id)
12 ) ENGINE=MyISAM;