db changes and build pipeline
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-07-15 12:21:37 -04:00
parent 5337e7ccb8
commit e6d6b629db
30 changed files with 1332 additions and 132 deletions

View File

@@ -34,7 +34,7 @@ namespace DBConnection.Migrations
b.HasKey("Url");
b.ToTable("Authors");
b.ToTable("Authors", (string)null);
});
modelBuilder.Entity("DBConnection.Models.Chapter", b =>
@@ -54,10 +54,13 @@ namespace DBConnection.Migrations
b.Property<DateTime>("DateModified")
.HasColumnType("TEXT");
b.Property<DateTime>("DatePosted")
b.Property<DateTime?>("DatePosted")
.HasColumnType("TEXT");
b.Property<DateTime>("DateUpdated")
b.Property<DateTime?>("DateUpdated")
.HasColumnType("TEXT");
b.Property<DateTime?>("LastContentFetch")
.HasColumnType("TEXT");
b.Property<string>("Name")
@@ -74,7 +77,7 @@ namespace DBConnection.Migrations
b.HasIndex("NovelUrl");
b.ToTable("Chapters");
b.ToTable("Chapters", (string)null);
});
modelBuilder.Entity("DBConnection.Models.Novel", b =>
@@ -94,6 +97,10 @@ namespace DBConnection.Migrations
b.Property<DateTime>("DatePosted")
.HasColumnType("TEXT");
b.Property<Guid>("Guid")
.ValueGeneratedOnAdd()
.HasColumnType("TEXT");
b.Property<DateTime>("LastUpdated")
.HasColumnType("TEXT");
@@ -105,7 +112,7 @@ namespace DBConnection.Migrations
b.HasIndex("AuthorUrl");
b.ToTable("Novels");
b.ToTable("Novels", (string)null);
});
modelBuilder.Entity("DBConnection.Models.Tag", b =>
@@ -121,7 +128,7 @@ namespace DBConnection.Migrations
b.HasKey("TagValue");
b.ToTable("Tags");
b.ToTable("Tags", (string)null);
});
modelBuilder.Entity("DBConnection.Models.User", b =>
@@ -142,7 +149,7 @@ namespace DBConnection.Migrations
b.HasKey("Id");
b.ToTable("Users");
b.ToTable("Users", (string)null);
});
modelBuilder.Entity("DBConnection.Models.UserNovel", b =>
@@ -160,7 +167,7 @@ namespace DBConnection.Migrations
b.HasIndex("UserId");
b.ToTable("UserNovels");
b.ToTable("UserNovels", (string)null);
});
modelBuilder.Entity("NovelTag", b =>
@@ -175,7 +182,7 @@ namespace DBConnection.Migrations
b.HasIndex("TagsTagValue");
b.ToTable("NovelTag");
b.ToTable("NovelTag", (string)null);
});
modelBuilder.Entity("DBConnection.Models.Chapter", b =>