mirror of
https://github.com/penpot/penpot.git
synced 2025-05-23 21:26:13 +02:00
♻️ Refactor backend to be more async friendly
This commit is contained in:
parent
087d896569
commit
9e4a50fb15
49 changed files with 1503 additions and 1378 deletions
|
@ -9,7 +9,6 @@ CREATE TABLE team_invitation (
|
|||
PRIMARY KEY(team_id, email_to)
|
||||
);
|
||||
|
||||
|
||||
ALTER TABLE team_invitation
|
||||
ALTER COLUMN email_to SET STORAGE external,
|
||||
ALTER COLUMN role SET STORAGE external;
|
||||
ALTER COLUMN role SET STORAGE external;
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
CREATE INDEX storage_object__hash_backend_bucket__idx
|
||||
ON storage_object ((metadata->>'~:hash'), (metadata->>'~:bucket'), backend)
|
||||
WHERE deleted_at IS NULL;
|
Loading…
Add table
Add a link
Reference in a new issue