summaryrefslogtreecommitdiff
path: root/extras/m_sqloper.postgresql.sql
blob: fd640949fc182cfec7421c1ffd603f5fbecc04a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--
-- 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);