mirror of
https://github.com/stashapp/stash.git
synced 2025-12-17 20:34:37 +03:00
Dependency updates
This commit is contained in:
2
vendor/github.com/golang-migrate/migrate/v4/source/migration.go
generated
vendored
2
vendor/github.com/golang-migrate/migrate/v4/source/migration.go
generated
vendored
@@ -67,7 +67,7 @@ func (i *Migrations) Append(m *Migration) (ok bool) {
|
||||
|
||||
func (i *Migrations) buildIndex() {
|
||||
i.index = make(uintSlice, 0)
|
||||
for version, _ := range i.migrations {
|
||||
for version := range i.migrations {
|
||||
i.index = append(i.index, version)
|
||||
}
|
||||
sort.Sort(i.index)
|
||||
|
||||
Reference in New Issue
Block a user