Skip to content

Commit

Permalink
fix:Fixed crash due to tableName being changed to lowercase
Browse files Browse the repository at this point in the history
  • Loading branch information
angrezichatterbox committed Sep 24, 2024
1 parent 5921ed3 commit 2ea82fe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/be/scri/models/Clip.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import androidx.room.Entity
import androidx.room.Index
import androidx.room.PrimaryKey

@Entity(tablename = "clips", indices = [(Index(value = ["id"], unique = true))])
@Entity(tableName = "clips", indices = [(Index(value = ["id"], unique = true))])
data class Clip(
@PrimaryKey(autoGenerate = true) var id: Long?,
@ColumnInfo(name = "value") var value: String,
Expand Down

0 comments on commit 2ea82fe

Please sign in to comment.