penpot/backend/src/app/migrations/sql/0040-add-error-report-tables.sql
2021-01-25 11:51:15 +01:00

11 lines
246 B
SQL

CREATE TABLE server_error_report (
id uuid NOT NULL,
created_at timestamptz NOT NULL DEFAULT clock_timestamp(),
content jsonb,
PRIMARY KEY (id, created_at)
);
ALTER TABLE server_error_report
ALTER COLUMN content SET STORAGE external;