mirror of
https://github.com/rsyslog/loganalyzer.git
synced 2025-09-26 19:29:07 +02:00
12 lines
366 B
SQL
12 lines
366 B
SQL
# phpLogCon - A Web Interface to Log Data.
|
|
# Copyright (C) 2003 - 2004 Adiscon GmbH
|
|
#
|
|
# This SQL file creates the SystemEventsProperties table for Mysql
|
|
|
|
CREATE TABLE IF NOT EXISTS SystemEventsProperties (
|
|
ID int unsigned not null auto_increment primary key,
|
|
SystemEventID int NULL ,
|
|
ParamName varchar (255) NULL ,
|
|
ParamValue varchar (255) NULL
|
|
);
|