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

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);