Column名を追加

This commit is contained in:
r-ca 2023-12-13 18:32:40 +09:00
parent ab4a88e4bd
commit 22d92f87ce
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,5 +1,6 @@
package one.nem.lacerta.source.db.entity;
import androidx.room.ColumnInfo;
import androidx.room.Entity;
import androidx.room.PrimaryKey;
@ -9,6 +10,7 @@ public class Repositories {
@PrimaryKey
private String id;
@ColumnInfo(name = "relative_path")
private String relativePath;
}