Add ROM set category.

This commit is contained in:
2020-09-05 01:52:43 +01:00
parent 38b298e19d
commit 9f14a82222
17 changed files with 537 additions and 26 deletions

View File

@@ -221,6 +221,8 @@ namespace RomRepoMgr.Database.Migrations
b.Property<string>("Author").HasColumnType("TEXT");
b.Property<string>("Category").HasColumnType("TEXT");
b.Property<string>("Comment").HasColumnType("TEXT");
b.Property<DateTime>("CreatedOn").HasColumnType("TEXT");
@@ -245,6 +247,8 @@ namespace RomRepoMgr.Database.Migrations
b.HasIndex("Author");
b.HasIndex("Category");
b.HasIndex("Comment");
b.HasIndex("Date");