inspircd/extras/m_sqloper.mysql.sql
2015-02-22 14:37:40 +01:00

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;