mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 00:13:16 +00:00
主キーにNonNullアノテーションを追加
This commit is contained in:
parent
6e8ad7f9fc
commit
fdb2d535cd
|
@ -1,5 +1,6 @@
|
|||
package one.nem.lacerta.source.database.entity;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.room.ColumnInfo;
|
||||
import androidx.room.Entity;
|
||||
import androidx.room.PrimaryKey;
|
||||
|
@ -9,6 +10,7 @@ public class Tag {
|
|||
|
||||
@PrimaryKey
|
||||
@ColumnInfo(name = "id")
|
||||
@NonNull
|
||||
public String id; // タグID
|
||||
|
||||
@ColumnInfo(name = "tag_name")
|
||||
|
|
Loading…
Reference in New Issue
Block a user