]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - extras/m_sqloper.postgresql.sql
Show a better warning when certtool/openssl are missing.
[user/henk/code/inspircd.git] / extras / m_sqloper.postgresql.sql
1 --
2 -- PostgreSQL database dump
3 --
4
5 CREATE TABLE ircd_opers (
6     id serial NOT NULL,
7     username text,
8     "password" text,
9     hostname text,
10     "type" text
11 );
12 ALTER TABLE ONLY ircd_opers
13     ADD CONSTRAINT ircd_opers_pkey PRIMARY KEY (id);
14