hdkv
/
i2_bot
Archived
1
Fork 0

Fix for column count in pokememes

master
Vladimir Hodakov 2018-02-17 20:54:00 +04:00
parent 54614bfc4d
commit 6a681669ab
1 changed files with 1 additions and 1 deletions

View File

@ -143,7 +143,7 @@ func (dc *DataCache) AddPokememe(pokememeData map[string]string, pokememeLocatio
// All objects are prepared, let's fill database with it!
c.Log.Debug("Filling pokememe...")
_, err := c.Db.NamedExec("INSERT INTO pokememes VALUES(NULL, :grade, :name, :description, :attack, :hp, :mp, :defence, :price, :purchaseable, :image_url, :player_id, :created_at)", &pokememe)
_, err := c.Db.NamedExec("INSERT INTO pokememes VALUES(NULL, :grade, :name, :description, :attack, :hp, :mp, :defence, :price, :purchaseable, :image_url, :player_id, 1, :created_at)", &pokememe)
if err != nil {
return 0, err
}