diff --git a/app/store.go b/app/store.go index 43e0cf999..333db199f 100644 --- a/app/store.go +++ b/app/store.go @@ -1,9 +1,8 @@ package app // Registers all supported store backends -// -// SQLite is intentionally ignored here import ( _ "github.com/cortezaproject/corteza-server/store/mysql" _ "github.com/cortezaproject/corteza-server/store/postgres" + _ "github.com/cortezaproject/corteza-server/store/sqlite3" ) diff --git a/store/postgres/postgres.go b/store/postgres/postgres.go index caba4949c..b29d1082c 100644 --- a/store/postgres/postgres.go +++ b/store/postgres/postgres.go @@ -24,7 +24,6 @@ type ( func init() { store.Register(Connect, "postgres", "postgres+debug") sql.Register("postgres+debug", sqlmw.Driver(new(pq.Driver), instrumentation.Debug())) - } func Connect(ctx context.Context, dsn string) (store.Storer, error) {