mirror of
https://github.com/penpot/penpot.git
synced 2026-04-29 13:18:29 +00:00
5 lines
129 B
SQL
5 lines
129 B
SQL
ALTER TABLE file ADD COLUMN data_ref_id uuid NULL;
|
|
|
|
CREATE INDEX IF NOT EXISTS file__data_ref_id__idx
|
|
ON file (data_ref_id);
|