diff --git a/migrations/schema.sql b/migrations/schema.sql index 2252e5469..0ff971d23 100644 --- a/migrations/schema.sql +++ b/migrations/schema.sql @@ -115,7 +115,7 @@ CREATE TABLE IF NOT EXISTS eventlog( action VARCHAR(128) NOT NULL, source JSON, /* { userId, username, ip }. userId can be null for cron,sysadmin */ data JSON, /* free flowing json based on action */ - creationTime TIMESTAMP, + creationTime TIMESTAMP, /* FIXME: precision must be TIMESTAMP(2) */ PRIMARY KEY (id));