mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-26 02:40:04 -04:00
11 lines
248 B
SQL
11 lines
248 B
SQL
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);
|