mirror of
https://github.com/ouchadam/small-talk.git
synced 2024-12-21 07:27:09 +01:00
Fix crash when using stdb due to wrong schema
This commit is contained in:
parent
a0c3847611
commit
408513764c
@ -59,7 +59,7 @@ internal class AppModule(context: Application, logger: MatrixLogger) {
|
||||
}
|
||||
|
||||
private val driver = AndroidSqliteDriver(DapkDb.Schema, context, "dapk.db")
|
||||
private val stDriver = AndroidSqliteDriver(DapkDb.Schema, context, "stdb.db")
|
||||
private val stDriver = AndroidSqliteDriver(StDb.Schema, context, "stdb.db")
|
||||
private val engineDatabase = DapkDb(driver)
|
||||
private val stDatabase = StDb(stDriver)
|
||||
val coroutineDispatchers = CoroutineDispatchers(Dispatchers.IO)
|
||||
|
Loading…
Reference in New Issue
Block a user