blob: 199a656f6c639ff5bb56d9bff6f74e4bb47411b1 (
plain)
1
|
--
-- 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);
|