]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - docs/sql/sqloper.pgsql.sql
Update the module descriptions.
[user/henk/code/inspircd.git] / docs / sql / sqloper.pgsql.sql
1 CREATE TABLE ircd_opers (
2     "id" serial NOT NULL,
3     "name" text NOT NULL,
4     "password" text NOT NULL,
5     "hash" text,
6     "host" text NOT NULL,
7     "type" text NOT NULL,
8     "fingerprint" text,
9     "autologin" smallint NOT NULL DEFAULT 0,
10     "active" smallint NOT NULL DEFAULT 1
11 );
12 ALTER TABLE ONLY ircd_opers
13     ADD CONSTRAINT ircd_opers_pkey PRIMARY KEY (id);