mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-23 08:23:15 +00:00
Metaの取得を1クエリで完結させたいのでDocumentEntityに移動
This commit is contained in:
parent
5b9b9b5580
commit
d28f03573d
|
@ -8,6 +8,7 @@ import androidx.room.TypeConverters;
|
||||||
|
|
||||||
import one.nem.lacerta.source.database.common.DateTypeConverter;
|
import one.nem.lacerta.source.database.common.DateTypeConverter;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
import java.util.Date;
|
import java.util.Date;
|
||||||
|
|
||||||
@Entity(tableName = "document")
|
@Entity(tableName = "document")
|
||||||
|
@ -32,4 +33,7 @@ public class DocumentEntity {
|
||||||
|
|
||||||
@ColumnInfo(name = "default_branch")
|
@ColumnInfo(name = "default_branch")
|
||||||
public String defaultBranch; // デフォルトブランチ
|
public String defaultBranch; // デフォルトブランチ
|
||||||
|
|
||||||
|
@ColumnInfo(name = "tag_ids
|
||||||
|
public ArrayList<String> tagIds; // タグ
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user