顯示具有 room 標籤的文章。 顯示所有文章
顯示具有 room 標籤的文章。 顯示所有文章

2020年2月7日 星期五

Android room migration with new table and column not primitive type

最近 room 的 Migration 是新增一個 table


@Entity
@TypeConverters(RolesConverter::class)
data class BikePositionRoom(
    @PrimaryKey
    val id: String = UUID.randomUUID().toString(),
    var city: String,
    var positionName: String,
    var latLng: LatLng,
    var available: Int? = null,
    var total: Int? = null
)