summaryrefslogtreecommitdiff
path: root/extras/m_sqloper.pgschema.sql
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-15 00:45:23 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-01-15 00:45:23 +0000
commit6b23783b71e98bae6aced7144c6730f028873cb6 (patch)
tree4d1a5f8f6831ab5adb6499c55099cce708256723 /extras/m_sqloper.pgschema.sql
parentf927c17c606bb6f13376a683f2f6776fc4c3e4c9 (diff)
Rename all these so that the names reflect the database server theyre used with more accurately -- for example, the old mysql ones were just .schema.sql, and
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
Diffstat (limited to 'extras/m_sqloper.pgschema.sql')
-rw-r--r--extras/m_sqloper.pgschema.sql14
1 files changed, 0 insertions, 14 deletions
diff --git a/extras/m_sqloper.pgschema.sql b/extras/m_sqloper.pgschema.sql
deleted file mode 100644
index fd640949f..000000000
--- a/extras/m_sqloper.pgschema.sql
+++ /dev/null
@@ -1,14 +0,0 @@
---
--- 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);
-