You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Major migrations revamp. Migrations are added similar to before but all the sql is written by hand. This was done to fix some big bugs with the old system. More info can be found in issue #67.
A lot of annotations have been removed as they were only used for migrations. You will want to change @PrimaryKey -> @Key and @AutoIncrementPrimaryKey -> @AutoIncrement + @Key. The rest of the migrations except @Column and @DynamicColumn have been removed. Specify migration constraints in the migrations.
initLoader has been changed to restartLoader. Lost of subtle bugs fixed by this change