mirror of
https://github.com/penpot/penpot.git
synced 2025-05-23 21:16:12 +02:00
🐛 Fix typos in backend
This commit is contained in:
parent
589e646023
commit
cd2d3d5fa3
33 changed files with 65 additions and 61 deletions
|
@ -22,7 +22,7 @@ CREATE TABLE storage_data (
|
|||
CREATE INDEX storage_data__id__idx ON storage_data(id);
|
||||
|
||||
-- Table used for store inflight upload ids, for later recheck and
|
||||
-- delete possible staled files that exists on the phisical storage
|
||||
-- delete possible staled files that exists on the physical storage
|
||||
-- but does not exists in the 'storage_object' table.
|
||||
|
||||
CREATE TABLE storage_pending (
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
-- Fix problem with content-type inconherence
|
||||
-- Fix problem with content-type incoherence
|
||||
|
||||
UPDATE storage_object so
|
||||
SET metadata = jsonb_set(metadata, '{~:content-type}', to_jsonb(fmo.mtype))
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
--- This is a second migration but it should be applied when manual
|
||||
--- migration intervention is alteady executed.
|
||||
--- migration intervention is already executed.
|
||||
|
||||
ALTER TABLE file_media_object ALTER COLUMN media_id SET NOT NULL;
|
||||
DROP TABLE file_media_thumbnail;
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
alter index color_colection__team_id__idx to color_collection__team_id__idx;
|
||||
alter index icon_colection__team_id__idx to icon_collection__team_id__idx;
|
||||
alter index file__modified_at__has_media_trimed__idx to file__modified_at__has_media_trimmed__idx;
|
||||
alter index media_bject__file_id__idx rename to media_object__file_id__idx;
|
Loading…
Add table
Add a link
Reference in a new issue