mirror of
https://github.com/penpot/penpot.git
synced 2025-02-10 00:58:26 -05: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
Reference in a new issue