mirror of https://github.com/penpot/penpot.git
🐛 Fix backend last migration naming (#7333)
This commit is contained in:
parent
e2151409bf
commit
85c1750706
|
|
@ -446,8 +446,8 @@
|
|||
{:name "0140-add-locked-by-column-to-file-change-table"
|
||||
:fn (mg/resource "app/migrations/sql/0140-add-locked-by-column-to-file-change-table.sql")}
|
||||
|
||||
{:name "0141-add-idx-to-file_library_rel"
|
||||
:fn (mg/resource "app/migrations/sql/0141-add-idx-to-file_library_rel.sql")}])
|
||||
{:name "0141-add-idx-to-file-library-rel"
|
||||
:fn (mg/resource "app/migrations/sql/0141-add-idx-to-file-library-rel.sql")}])
|
||||
|
||||
(defn apply-migrations!
|
||||
[pool name migrations]
|
||||
|
|
|
|||
|
|
@ -0,0 +1,2 @@
|
|||
CREATE INDEX IF NOT EXISTS file_library_rel__library_file_id__idx
|
||||
ON file_library_rel (library_file_id);
|
||||
|
|
@ -1,2 +0,0 @@
|
|||
CREATE INDEX file_library_rel__library_file_id__idx
|
||||
ON file_library_rel (library_file_id);
|
||||
Loading…
Reference in New Issue