Merge pull request #87 from velour/fix_babbler_table

babbler: create tables no matter what
This commit is contained in:
Chris Sexton 2017-10-25 18:47:10 -04:00 committed by GitHub
commit ef1c3010c3
1 changed files with 33 additions and 35 deletions

View File

@ -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,