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

39 lines
965 B
Go
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

// i2_bot Instinct PokememBro Bot
// Copyright (c) 2017-2018 Vladimir "fat0troll" Hodakov
package migrations
import (
"database/sql"
"errors"
)
// DeletePokememesTablesUp drops `pokememes`, `pokememes_elements` and `pokememes_locations` tables
// These tables data is rarely changed, so I decided to hold such data in source code
func DeletePokememesTablesUp(tx *sql.Tx) error {
request := "DROP TABLE IF EXISTS `pokememes`"
_, err := tx.Exec(request)
if err != nil {
return err
}
request = "DROP TABLE IF EXISTS `pokememes_elements`"
_, err = tx.Exec(request)
if err != nil {
return err
}
request = "DROP TABLE IF EXISTS `pokememes_locations`"
_, err = tx.Exec(request)
if err != nil {
return err
}
return nil
}
// DeletePokememesTablesDown does nothing, because after nerf old information isn't needed at all
func DeletePokememesTablesDown(tx *sql.Tx) error {
return errors.New("This migration is irreversible, as nerf itself")
}