summaryrefslogtreecommitdiffstats
path: root/store/sql_store.go
diff options
context:
space:
mode:
Diffstat (limited to 'store/sql_store.go')
-rw-r--r--store/sql_store.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/store/sql_store.go b/store/sql_store.go
index f8c585979..c31515a44 100644
--- a/store/sql_store.go
+++ b/store/sql_store.go
@@ -615,6 +615,8 @@ func decrypt(key []byte, cryptoText string) (string, error) {
// Interface for both gorp.DbMap and gorp.Transaction to allow code for one to be reused with the other
type Queryable interface {
+ Exec(query string, args ...interface{}) (dbsql.Result, error)
Insert(list ...interface{}) error
+ SelectInt(query string, args ...interface{}) (int64, error)
Update(list ...interface{}) (int64, error)
}