Correct table names of sql storage for remotecache

This commit is contained in:
Oleg Gaidarenko
2019-03-20 11:36:28 +01:00
parent d1e48a07b2
commit c5bc723a6e
2 changed files with 18 additions and 2 deletions

View File

@@ -101,7 +101,7 @@ func (dc *databaseCache) Set(key string, value interface{}, expire time.Duration
// insert or update depending on if item already exist
if has {
sql := `UPDATE cache_data SET data=?, created=?, expire=? WHERE cache_key='?'`
sql := `UPDATE cache_data SET data=?, created_at=?, expires=? WHERE cache_key=?`
_, err = session.Exec(sql, data, getTime().Unix(), expiresInSeconds, key)
} else {
sql := `INSERT INTO cache_data (cache_key,data,created_at,expires) VALUES(?,?,?,?)`