mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-09 18:49:03 -04:00
13 lines
312 B
SQL
13 lines
312 B
SQL
CREATE TABLE ircd_opers (
|
|
id bigint(20) NOT NULL auto_increment,
|
|
name text NOT NULL,
|
|
password text NOT NULL,
|
|
hash text,
|
|
host text NOT NULL,
|
|
type text NOT NULL,
|
|
fingerprint text,
|
|
autologin tinyint(1) NOT NULL DEFAULT 0,
|
|
active tinyint(1) NOT NULL DEFAULT 1,
|
|
PRIMARY KEY (id)
|
|
) ENGINE=InnoDB;
|