Archived
1
This repository has been archived on 2022-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
i2_bot/lib/migrations/32_add_is_active_to_pokememes.go

31 lines
773 B
Go
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017 Vladimir "fat0troll" Hodakov
package migrations
import (
"database/sql"
)
// AddIsActiveToPokememesUp adds `is_active` to `pokememes`
func AddIsActiveToPokememesUp(tx *sql.Tx) error {
request := "ALTER TABLE `pokememes` ADD COLUMN `is_active` tinyint(1) DEFAULT 1 NOT NULL COMMENT 'Является ли покемем играющим в данный момент?'"
_, err := tx.Exec(request)
if err != nil {
return err
}
return nil
}
// AddIsActiveToPokememesDown removes `is_active` from `pokememes` table
func AddIsActiveToPokememesDown(tx *sql.Tx) error {
request := "ALTER TABLE `pokememes` DROP COLUMN `is_active`"
_, err := tx.Exec(request)
if err != nil {
return err
}
return nil
}