inspircd/extras/m_sqloper.postgresql.sql

15 lines
245 B
MySQL
Raw Normal View History

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