mirror of
https://github.com/penpot/penpot.git
synced 2026-05-11 11:03:52 +00:00
8 lines
239 B
SQL
8 lines
239 B
SQL
CREATE TABLE file_migration (
|
|
file_id uuid NOT NULL REFERENCES file(id) ON DELETE CASCADE DEFERRABLE INITIALLY DEFERRED,
|
|
name text NOT NULL,
|
|
created_at timestamptz NOT NULL DEFAULT clock_timestamp(),
|
|
|
|
PRIMARY KEY(file_id, name)
|
|
);
|