Fix various issues on locations and leagues view
This commit is contained in:
parent
413bf22f16
commit
a2e70332de
28
lib/migrations/28_fix_locations.go
Normal file
28
lib/migrations/28_fix_locations.go
Normal file
@ -0,0 +1,28 @@
|
||||
// i2_bot – Instinct PokememBro Bot
|
||||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||||
|
||||
package migrations
|
||||
|
||||
import (
|
||||
// stdlib
|
||||
"database/sql"
|
||||
)
|
||||
|
||||
// FixLocationsUp fixes location issues
|
||||
func FixLocationsUp(tx *sql.Tx) error {
|
||||
_, err := tx.Exec("UPDATE `locations` SET symbol='🏙' WHERE id=4")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
_, err = tx.Exec("UPDATE `locations` SET symbol='⛪️' WHERE id=6")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// FixLocationsDown does nothing
|
||||
func FixLocationsDown(tx *sql.Tx) error {
|
||||
return nil
|
||||
}
|
28
lib/migrations/29_fix_leagues_names.go
Normal file
28
lib/migrations/29_fix_leagues_names.go
Normal file
@ -0,0 +1,28 @@
|
||||
// i2_bot – Instinct PokememBro Bot
|
||||
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
|
||||
|
||||
package migrations
|
||||
|
||||
import (
|
||||
// stdlib
|
||||
"database/sql"
|
||||
)
|
||||
|
||||
// FixLeaguesNamesUp fixes league naming issues
|
||||
func FixLeaguesNamesUp(tx *sql.Tx) error {
|
||||
_, err := tx.Exec("UPDATE `leagues` SET name='МИСТИКА' WHERE id=2")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
_, err = tx.Exec("UPDATE `leagues` SET name='ОТВАГА' WHERE id=3")
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// FixLeaguesNamesDown does nothing
|
||||
func FixLeaguesNamesDown(tx *sql.Tx) error {
|
||||
return nil
|
||||
}
|
@ -38,6 +38,8 @@ func (m *Migrations) Init() {
|
||||
goose.AddNamedMigration("25_remove_reusable.go", RemoveReusableUp, RemoveReusableDown)
|
||||
goose.AddNamedMigration("26_create_orders_completions.go", CreateOrdersCompletionsUp, CreateOrdersCompletionsDown)
|
||||
goose.AddNamedMigration("27_add_new_weapon.go", AddNewWeaponUp, AddNewWeaponDown)
|
||||
goose.AddNamedMigration("28_fix_locations.go", FixLocationsUp, FixLocationsDown)
|
||||
goose.AddNamedMigration("29_fix_leagues_names.go", FixLeaguesNamesUp, FixLeaguesNamesDown)
|
||||
}
|
||||
|
||||
// Migrate migrates database to current version
|
||||
|
Reference in New Issue
Block a user