blob: f4349580682b2903d2f21156cb3214fb53c39b86 (
plain)
1
2
3
4
5
6
7
8
9
|
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;
|