0
Fork 0
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:
Andrey Antukh 2021-02-09 16:19:55 +01:00 committed by Andrés Moya
parent 32e832eb39
commit 76e43f339a
2 changed files with 5 additions and 0 deletions

View file

@ -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")}
])

View file

@ -0,0 +1,2 @@
CREATE INDEX file_change__created_at_idx
ON file_change (created_at);