mirror of
https://github.com/penpot/penpot.git
synced 2025-05-11 18:26:36 +02:00
🎉 Add missing index to file_change table.
This commit is contained in:
parent
32e832eb39
commit
76e43f339a
2 changed files with 5 additions and 0 deletions
|
@ -145,6 +145,9 @@
|
|||
|
||||
{:name "0044-add-storage-refcount"
|
||||
:fn (mg/resource "app/migrations/sql/0044-add-storage-refcount.sql")}
|
||||
|
||||
{:name "0045-add-index-to-file-change-table"
|
||||
:fn (mg/resource "app/migrations/sql/0045-add-index-to-file-change-table.sql")}
|
||||
])
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
CREATE INDEX file_change__created_at_idx
|
||||
ON file_change (created_at);
|
Loading…
Add table
Add a link
Reference in a new issue