mirror of
https://github.com/laurivosandi/certidude
synced 2024-11-16 18:06:44 +00:00
15 lines
279 B
MySQL
15 lines
279 B
MySQL
|
create table if not exists log (
|
||
|
created datetime,
|
||
|
facility varchar(30),
|
||
|
level int,
|
||
|
severity varchar(10),
|
||
|
message text,
|
||
|
module varchar(20),
|
||
|
func varchar(20),
|
||
|
lineno int,
|
||
|
exception text,
|
||
|
process int,
|
||
|
thread text,
|
||
|
thread_name text
|
||
|
)
|