summaryrefslogtreecommitdiff
path: root/extras
diff options
context:
space:
mode:
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-28 21:51:14 +0000
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-28 21:51:14 +0000
commit9e61f11a14367140429ef99c7c9128ebd6cb2b90 (patch)
treebd4d9ba0cf993b455b605d2aecf3bc0f9b5ab508 /extras
parent103832d9c136727b08b3dc1ab0ca8a5df2765fba (diff)
Schema for sqloper for PostGre.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6146 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'extras')
-rw-r--r--extras/m_sqloper.pgschema.sql14
1 files changed, 14 insertions, 0 deletions
diff --git a/extras/m_sqloper.pgschema.sql b/extras/m_sqloper.pgschema.sql
new file mode 100644
index 000000000..fd640949f
--- /dev/null
+++ b/extras/m_sqloper.pgschema.sql
@@ -0,0 +1,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);
+