mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -04:00
11 lines
237 B
SQL
11 lines
237 B
SQL
CREATE TABLE ircd_opers (
|
|
id integer primary key,
|
|
name text NOT NULL,
|
|
password text NOT NULL,
|
|
hash text,
|
|
host text NOT NULL,
|
|
type text NOT NULL,
|
|
fingerprint text,
|
|
autologin integer NOT NULL DEFAULT 0,
|
|
active integer NOT NULL DEFAULT 1);
|