Když je v kódu kotlin:
Před
@ColumnInfo(name = "question_id")
var questionId: Long
Po
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long
Když je v kódu kotlin:
Před
@ColumnInfo(name = "question_id")
var questionId: Long
Po
@ColumnInfo(name = "question_id", index = true) //just add index = true
var questionId: Long