discourse/migrations/db/intermediate_db_schema/002-log_entries.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
178 B
MySQL
Raw Normal View History

CREATE TABLE log_entries
(
created_at DATETIME NOT NULL,
type TEXT NOT NULL,
message TEXT NOT NULL,
exception TEXT,
details JSON_TEXT
);