Hi, I’m trying to add a table in my sqldelight schema but the app doesn’t update the database schema I even try deleting the data and uninstalling the app but it still remain the old Schema,
Is there a way to force the upgrade of the schema? (like the “version” in Realm)
Strange thing is that if I check the generated class “DatabaseImpl” it has the correct generation of tables, and if I change the name of the database it works as intended (generate the new schema) but if I use the same name the table is not there 😕 . I’m using sqldelight 1.5.3
sqldelight{
database("Database"){
packageName = "package.name.datasource.cache"
sourceFolders = listOf("sqldelight")
verifyMigrations = true
}
}
Any Ideas? The issue is happening on Android. Thanks !!