I'm using the ORM DbFlow in my app, and i changed a column in a table class.
To get the DBFlow internal classes rebuilt with the new column, I tried incrementing the database version but the ****_Table class that we use in the queries hasn't been updated and still has the columns of the previous version.
@Database(name = MyDatabase.NAME, version = MyDatabase.VERSION)
public class MyDatabase {
public static final String NAME = "Releves";
//incremented the database version from 2 to 3
public static final int VERSION = 3;
Do you know how to make it do the update so i can make my query ?
Thank you
Possible reason is that classes auto generated by dbflow might be still present, Try clean and rebuild the project - if this did not work, try invalidate cache and restart (File -> Invalidate cache and restart)