Quando nel codice kotlin:
Prima
@ColumnInfo(name = "question_id")
var questionId: Long
Dopo
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long
Quando nel codice kotlin:
Prima
@ColumnInfo(name = "question_id")
var questionId: Long
Dopo
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long