add note to fix precision at some point

This commit is contained in:
Girish Ramakrishnan
2016-06-02 19:43:23 -07:00
parent 50c4e4c91e
commit 76fe2bf531

View File

@@ -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));