]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/sql/sqloper.mysql.sql
Move the SQL tables to docs/sql and install them on `make install`.
[user/henk/code/inspircd.git] / docs / sql / 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;