mirror of
https://github.com/penpot/penpot.git
synced 2026-05-14 04:24:01 +00:00
11 lines
246 B
SQL
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;
|