mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
SQLite3 schema for sql logging module.
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6343 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
db8cc20b73
commit
085671219c
34
extras/m_sqllog.sqlite3.sql
Normal file
34
extras/m_sqllog.sqlite3.sql
Normal file
@ -0,0 +1,34 @@
|
||||
CREATE TABLE ircd_log (
|
||||
id integer primary key,
|
||||
category_id integer,
|
||||
nick integer,
|
||||
host integer,
|
||||
source integer,
|
||||
dtime integer);
|
||||
|
||||
|
||||
CREATE TABLE ircd_log_categories (
|
||||
category_id integer primary key,
|
||||
category text NOT NULL
|
||||
);
|
||||
INSERT INTO "ircd_log_categories" VALUES(1, 'Oper');
|
||||
INSERT INTO "ircd_log_categories" VALUES(2, 'Kill');
|
||||
INSERT INTO "ircd_log_categories" VALUES(3, 'Server Link');
|
||||
INSERT INTO "ircd_log_categories" VALUES(4, 'G/Z/K/E Line');
|
||||
INSERT INTO "ircd_log_categories" VALUES(5, 'Connect');
|
||||
INSERT INTO "ircd_log_categories" VALUES(6, 'Disconnect');
|
||||
INSERT INTO "ircd_log_categories" VALUES(7, 'Flooding');
|
||||
INSERT INTO "ircd_log_categories" VALUES(8, 'Load Module');
|
||||
|
||||
|
||||
CREATE TABLE ircd_log_actors (
|
||||
id integer primary key,
|
||||
actor text
|
||||
);
|
||||
|
||||
|
||||
CREATE TABLE ircd_log_hosts (
|
||||
id integer primary key,
|
||||
hostname text
|
||||
);
|
||||
|
Loading…
x
Reference in New Issue
Block a user