CREATE TABLE ircd_opers (
id serial NOT NULL,
username text,
"password" text,
hostname text,
"type" text,
active boolean NOT NULL DEFAULT 1
);
ALTER TABLE ONLY ircd_opers
ADD CONSTRAINT ircd_opers_pkey PRIMARY KEY (id);
![]() |
index : ~steering/inspircd++.git | |
| Unnamed repository; edit this file 'description' to name the repository. | steering7253 |
| aboutsummaryrefslogtreecommitdiff |
CREATE TABLE ircd_opers (
id serial NOT NULL,
username text,
"password" text,
hostname text,
"type" text,
active boolean NOT NULL DEFAULT 1
);
ALTER TABLE ONLY ircd_opers
ADD CONSTRAINT ircd_opers_pkey PRIMARY KEY (id);