Code

services -> one litle fix needed
[gosa.git] / contrib / mysql / golog / golog.sql
2 create database golog with owner gomon;
4 create table golog (
5         time_stamp DATETIME,
6         host VARCHAR(50),
7         message VARCHAR(255),
8         log_level VARCHAR(15),
9         matched_dn VARCHAR(255),
10         matched_ts DATETIME
11         );
13 GRANT ALL PRIVILEGES ON golog TO gomon WITH GRANT OPTION;