mirror of https://github.com/velour/catbase.git
Merge pull request #87 from velour/fix_babbler_table
babbler: create tables no matter what
This commit is contained in:
commit
ef1c3010c3
|
@ -56,7 +56,6 @@ type BabblerArc struct {
|
|||
func New(bot bot.Bot) *BabblerPlugin {
|
||||
log.SetFlags(log.LstdFlags | log.Lshortfile)
|
||||
|
||||
if bot.DBVersion() == 1 {
|
||||
if _, err := bot.DB().Exec(`create table if not exists babblers (
|
||||
id integer primary key,
|
||||
babbler string
|
||||
|
@ -89,7 +88,6 @@ func New(bot bot.Bot) *BabblerPlugin {
|
|||
);`); err != nil {
|
||||
log.Fatal(err)
|
||||
}
|
||||
}
|
||||
|
||||
plugin := &BabblerPlugin{
|
||||
Bot: bot,
|
||||
|
|
Loading…
Reference in New Issue