mirror of
https://github.com/penpot/penpot.git
synced 2026-03-21 18:03:47 +00:00
🎉 Add frame thumbnail API
This commit is contained in:
committed by
Andrey Antukh
parent
fc2399a885
commit
34df52be5f
@@ -0,0 +1,10 @@
|
||||
CREATE TABLE file_frame_thumbnail (
|
||||
file_id uuid NOT NULL REFERENCES file(id) ON DELETE CASCADE,
|
||||
frame_id uuid NOT NULL,
|
||||
created_at timestamptz NOT NULL DEFAULT now(),
|
||||
updated_at timestamptz NOT NULL DEFAULT clock_timestamp(),
|
||||
|
||||
data text NULL,
|
||||
|
||||
PRIMARY KEY(file_id, frame_id)
|
||||
);
|
||||
Reference in New Issue
Block a user