WIP allow blog comment
This commit is contained in:
parent
21cd878839
commit
31d4f74e6d
7 changed files with 3588 additions and 13 deletions
|
|
@ -303,6 +303,9 @@ namespace Yavsc.Migrations
|
|||
b.Property<long>("BlogPostId")
|
||||
.HasColumnType("bigint");
|
||||
|
||||
b.Property<bool>("Comment")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.HasKey("CircleId", "BlogPostId");
|
||||
|
||||
b.HasIndex("BlogPostId");
|
||||
|
|
@ -338,7 +341,6 @@ namespace Yavsc.Migrations
|
|||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<string>("Avatar")
|
||||
.IsRequired()
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasMaxLength(512)
|
||||
.HasColumnType("character varying(512)")
|
||||
|
|
@ -3393,8 +3395,7 @@ namespace Yavsc.Migrations
|
|||
|
||||
modelBuilder.Entity("Yavsc.Models.ApplicationUser", b =>
|
||||
{
|
||||
b.Navigation("AccountBalance")
|
||||
.IsRequired();
|
||||
b.Navigation("AccountBalance");
|
||||
|
||||
b.Navigation("BankInfo");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue