what is the different between ```@Entity(tableName...
# announcements
u
what is the different between
Copy code
@Entity(tableName = "logs")
data class Log(@PrimaryKey(autoGenerate = true)
                 var id: Long = 0,val msg: String, val timestamp: Long)
and
Copy code
@Entity(tableName = "logs")
data class Log(val msg: String, val timestamp: Long) {

    @PrimaryKey(autoGenerate = true)
    var id: Long = 0
}
u
Thanks