Saat dalam kode kotlin:
Sebelum
@ColumnInfo(name = "question_id")
var questionId: Long
Setelah
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long
Saat dalam kode kotlin:
Sebelum
@ColumnInfo(name = "question_id")
var questionId: Long
Setelah
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long