Room Database Migration doesnt properly handle ALTER TABLE migration

后端 未结 7 2038
渐次进展
渐次进展 2020-12-13 06:36

Java.lang.IllegalStateException

Migration didn\'t properly handle user(therealandroid.github.com.roomcore.java.User).

Expected:

TableInfo{n

7条回答
  •  感动是毒
    2020-12-13 06:48

    I faced this issue today, I just changed int fields to Integer in Entities. As int cannot be null but Integer objects could be null.

提交回复
热议问题