mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
8 lines
142 B
SQL
8 lines
142 B
SQL
CREATE TABLE ircd_opers (
|
|
id integer primary key,
|
|
username text,
|
|
password text,
|
|
hostname text,
|
|
type text,
|
|
active integer NOT NULL DEFAULT 1);
|