mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@7456 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);
|
|
|