diff options
| author | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2023-12-29 09:41:56 +0100 |
|---|---|---|
| committer | Paweł Bernaciak <pawelbernaciak@zohomail.eu> | 2023-12-29 09:41:56 +0100 |
| commit | 79f5eaf40b93d64be74d8b4f1ef80d19fadbfbe1 (patch) | |
| tree | ddf121e78bdd50673379b223abfdb448c4f81291 /CoreWiki/Migrations/ApplicationDbContextModelSnapshot.cs | |
| parent | 1a96616699ab41bf6343bc1acc45a836c3e6caf3 (diff) | |
Diffstat (limited to 'CoreWiki/Migrations/ApplicationDbContextModelSnapshot.cs')
| -rw-r--r-- | CoreWiki/Migrations/ApplicationDbContextModelSnapshot.cs | 70 |
1 files changed, 64 insertions, 6 deletions
diff --git a/CoreWiki/Migrations/ApplicationDbContextModelSnapshot.cs b/CoreWiki/Migrations/ApplicationDbContextModelSnapshot.cs index 4808c70..004bfe7 100644 --- a/CoreWiki/Migrations/ApplicationDbContextModelSnapshot.cs +++ b/CoreWiki/Migrations/ApplicationDbContextModelSnapshot.cs @@ -19,8 +19,9 @@ namespace CoreWiki.Migrations modelBuilder.Entity("CoreWiki.Models.Article", b => { - b.Property<string>("Slug") - .HasColumnType("TEXT"); + b.Property<int>("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); b.Property<string>("Content") .IsRequired() @@ -30,24 +31,81 @@ namespace CoreWiki.Migrations .HasColumnType("TEXT") .HasColumnName("Published"); + b.Property<string>("Slug") + .IsRequired() + .HasColumnType("TEXT"); + b.Property<string>("Topic") .IsRequired() .HasMaxLength(100) .HasColumnType("TEXT"); - b.HasKey("Slug"); + b.Property<int>("ViewCount") + .HasColumnType("INTEGER"); + + b.HasKey("Id"); b.ToTable("Articles"); b.HasData( new { - Slug = "home-page", + Id = 1, Content = "Welcome to your new CoreWiki installation", - PublishedDateTime = new DateTime(2023, 12, 22, 13, 41, 24, 978, DateTimeKind.Utc).AddTicks(110), - Topic = "Home Page" + PublishedDateTime = new DateTime(2023, 12, 25, 20, 29, 5, 642, DateTimeKind.Utc).AddTicks(7240), + Slug = "home-page", + Topic = "Home Page", + ViewCount = 0 }); }); + + modelBuilder.Entity("CoreWiki.Models.Comment", b => + { + b.Property<int>("Id") + .ValueGeneratedOnAdd() + .HasColumnType("INTEGER"); + + b.Property<int>("ArticleId") + .HasColumnType("INTEGER"); + + b.Property<string>("Content") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property<string>("DisplayName") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property<string>("EMail") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property<DateTime>("SubmittedDateTime") + .HasColumnType("TEXT") + .HasColumnName("Submitted"); + + b.HasKey("Id"); + + b.HasIndex("ArticleId"); + + b.ToTable("Comment"); + }); + + modelBuilder.Entity("CoreWiki.Models.Comment", b => + { + b.HasOne("CoreWiki.Models.Article", "Article") + .WithMany("Comments") + .HasForeignKey("ArticleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.Navigation("Article"); + }); + + modelBuilder.Entity("CoreWiki.Models.Article", b => + { + b.Navigation("Comments"); + }); #pragma warning restore 612, 618 } } |
