diff --git a/Yavsc/Migrations/ApplicationDbContextModelSnapshot.cs b/Yavsc/Migrations/ApplicationDbContextModelSnapshot.cs index 43a15d58..935b58d8 100644 --- a/Yavsc/Migrations/ApplicationDbContextModelSnapshot.cs +++ b/Yavsc/Migrations/ApplicationDbContextModelSnapshot.cs @@ -1,6 +1,8 @@ using System; using Microsoft.Data.Entity; using Microsoft.Data.Entity.Infrastructure; +using Microsoft.Data.Entity.Metadata; +using Microsoft.Data.Entity.Migrations; using Yavsc.Models; namespace Yavsc.Migrations @@ -95,14 +97,32 @@ namespace Yavsc.Migrations b.HasAnnotation("Relational:TableName", "AspNetUserRoles"); }); + modelBuilder.Entity("Yavsc.Models.Access.Ban", b => + { + b.Property("Id") + .ValueGeneratedOnAdd(); + + b.Property("DateCreated"); + + b.Property("DateModified"); + + b.Property("UserCreated"); + + b.Property("UserModified"); + + b.HasKey("Id"); + }); + modelBuilder.Entity("Yavsc.Models.Access.BlackListed", b => { b.Property("Id") .ValueGeneratedOnAdd(); - b.Property("OwnerId"); + b.Property("OwnerId") + .IsRequired(); - b.Property("UserId"); + b.Property("UserId") + .IsRequired(); b.HasKey("Id"); }); @@ -735,13 +755,13 @@ namespace Yavsc.Migrations b.Property("Id") .ValueGeneratedOnAdd(); + b.Property("Action"); + b.Property("ActivityCode") .IsRequired(); b.Property("Title"); - b.Property("ViewName"); - b.HasKey("Id"); });