mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-11 11:39:02 -04:00
the postgres ones were .pgschema.sql. Theyre now .mysql.sql, .postgresql.sql and .sqlite3.sql git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6345 e03df62e-2008-0410-955e-edbf42e46eb7
15 lines
245 B
SQL
15 lines
245 B
SQL
--
|
|
-- 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);
|
|
|