inspircd/extras/m_sqloper.pgschema.sql
2006-12-28 21:51:14 +00:00

15 lines
245 B
SQL

--
-- PostgreSQL database dump
--
CREATE TABLE ircd_opers (
id serial NOT NULL,
username text,
"password" text,
hostname text,
"type" text
);
ALTER TABLE ONLY ircd_opers
ADD CONSTRAINT ircd_opers_pkey PRIMARY KEY (id);