summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-29 02:05:45 +0000
committerpeavey <peavey@e03df62e-2008-0410-955e-edbf42e46eb7>2006-12-29 02:05:45 +0000
commitc722453bce8880f40d85995bd24ccf527b2bc3cc (patch)
treea058f7894e7af587a396d875b9ef5a3999a42332
parent6d79ddd5da846e6e89129abbfc9754ad0e2e0245 (diff)
Oops. Forgot table ircd_log_hosts.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6153 e03df62e-2008-0410-955e-edbf42e46eb7
-rw-r--r--extras/m_sqllog.pgschema.sql8
1 files changed, 8 insertions, 0 deletions
diff --git a/extras/m_sqllog.pgschema.sql b/extras/m_sqllog.pgschema.sql
index df49be787..2e40dd90d 100644
--- a/extras/m_sqllog.pgschema.sql
+++ b/extras/m_sqllog.pgschema.sql
@@ -41,3 +41,11 @@ INSERT INTO ircd_log_categories VALUES (8, 'Load Module');
ALTER TABLE ONLY ircd_log_categories
ADD CONSTRAINT ircd_log_categories_pkey PRIMARY KEY (category_id);
+
+
+CREATE TABLE ircd_log_hosts (
+ id serial NOT NULL,
+ hostname text
+);
+ALTER TABLE ONLY ircd_log_hosts
+ ADD CONSTRAINT ircd_log_hosts_pkey PRIMARY KEY (id);