/[sysplogd]/syslog.sql
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Contents of /syslog.sql

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3 - (show annotations)
Fri Apr 10 21:22:01 2009 UTC (15 years ago) by dpavlin
File size: 280 byte(s)
log to database
1 -- PostgreSQL schema
2
3 drop table log;
4
5 CREATE TABLE log (
6 id serial,
7 timestamp timestamp default now(),
8 ip inet not null,
9 hostname text not null,
10 facility int not null,
11 priority int not null,
12 level int not null,
13 program text not null,
14 message text,
15 PRIMARY KEY (id)
16 );
17

  ViewVC Help
Powered by ViewVC 1.1.26