mirror of
https://github.com/penpot/penpot.git
synced 2026-05-13 12:04:06 +00:00
11 lines
246 B
SQL
11 lines
246 B
SQL
-- Renames the old, already deprecated backend name with new one on
|
|
-- all storage object rows.
|
|
|
|
UPDATE storage_object
|
|
SET backend = 'assets-fs'
|
|
WHERE backend = 'fs';
|
|
|
|
UPDATE storage_object
|
|
SET backend = 'assets-s3'
|
|
WHERE backend = 's3';
|