From e1b43a5f22b3c8f9667e0ec25862567086d41360 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=82=8D=E3=82=80=E3=81=AD=E3=81=93?= Date: Wed, 17 Jan 2024 10:37:42 +0900 Subject: [PATCH] =?UTF-8?q?Entity=E3=81=ABisIncluded=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../nem/lacerta/source/database/entity/VcsLogEntity.java | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/src/main/java/one/nem/lacerta/source/database/entity/VcsLogEntity.java b/source/src/main/java/one/nem/lacerta/source/database/entity/VcsLogEntity.java index de1ed13a..17628e8e 100644 --- a/source/src/main/java/one/nem/lacerta/source/database/entity/VcsLogEntity.java +++ b/source/src/main/java/one/nem/lacerta/source/database/entity/VcsLogEntity.java @@ -45,4 +45,10 @@ public class VcsLogEntity { */ @ColumnInfo(name = "action") public String action; + + /** + * Revに含まれてるかどうか + */ + @ColumnInfo(name = "is_included") + public boolean isIncluded; }