mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 11:09:04 -04:00
10 lines
208 B
SQL
10 lines
208 B
SQL
CREATE TABLE ircd_opers (
|
|
id bigint(20) NOT NULL auto_increment,
|
|
username text,
|
|
password text,
|
|
hostname text,
|
|
type text,
|
|
active tinyint(1) NOT NULL DEFAULT 1,
|
|
PRIMARY KEY (id)
|
|
) ENGINE=MyISAM;
|