File: m_sqloper.postgresql.sql

package info (click to toggle)
inspircd 2.0.17-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie-kfreebsd
  • size: 4,420 kB
  • sloc: cpp: 47,390; perl: 2,861; ansic: 269; sh: 127; sql: 38; makefile: 34
file content (14 lines) | stat: -rw-r--r-- 245 bytes parent folder | download | duplicates (8)
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);