]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/sql/sqloper.sqlite3.sql
Update the module descriptions.
[user/henk/code/inspircd.git] / docs / sql / sqloper.sqlite3.sql
1 CREATE TABLE ircd_opers (
2 id integer primary key,
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 integer NOT NULL DEFAULT 0,
10 active integer NOT NULL DEFAULT 1);