update sql file

This commit is contained in:
Emmanuel Garette 2020-09-06 09:46:11 +02:00
parent a12e679b3c
commit 3823eedd02
1 changed files with 8 additions and 0 deletions

8
sql/risotto.sql Normal file
View File

@ -0,0 +1,8 @@
CREATE TABLE log(
Msg VARCHAR(255) NOT NULL,
Level VARCHAR(10) NOT NULL,
Path VARCHAR(255),
Username VARCHAR(100) NOT NULL,
Data JSON,
Date timestamp DEFAULT current_timestamp
);