Archived
1

Latest game update reflections

This commit is contained in:
2017-11-26 19:38:25 +04:00
parent 7803242588
commit b57cacb4d4
5 changed files with 79 additions and 1 deletions

View File

@@ -0,0 +1,24 @@
// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
package migrations
import (
// stdlib
"database/sql"
)
// AddNewWeaponUp adds new weapon, presented on 26.11.2017
func AddNewWeaponUp(tx *sql.Tx) error {
_, err := tx.Exec("INSERT INTO `weapons` VALUES(NULL, 'Буханка из пятёры', 1000000, 5000000, NOW())")
if err != nil {
return err
}
return nil
}
// AddNewWeaponDown does nothing
func AddNewWeaponDown(tx *sql.Tx) error {
return nil
}