Replies: 1 comment
-
Some Android phones like to persist application data even when you uninstall the app. Can you manually wipe your app's data in the settings? Surely after that we should see all the "CREATE TABLE" statements, maybe that helps to see what's going on here. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone,
I'm using Moor for my database interaction and I have this weird behavior where a table isn't created on my actual smartphone while the table is created on my emulator.
My setup:
This is how I create the database:
My migration logic is here:
The table I'm talking about is this one:
It's interesting that the debug log statements with the "CREATE TABLE ..." instructions are only shown in the console when I run the app on the emulator, not on the smartphone.
I have 9 tables. The table listed above is the only one missing. I've double checked the .sqlite files in the "Device File Explorer" and the the emulator file contains 9 tables, the smartphone file 8.
I really appreciate your help :)
Beta Was this translation helpful? Give feedback.
All reactions