presentation & tools
This commit is contained in:
@ -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
|
||||
@ -186,6 +188,10 @@ namespace Yavsc.Migrations
|
||||
b.Property<string>("ConcurrencyStamp")
|
||||
.IsConcurrencyToken();
|
||||
|
||||
b.Property<DateTime>("DateCreated");
|
||||
|
||||
b.Property<DateTime>("DateModified");
|
||||
|
||||
b.Property<string>("DedicatedGoogleCalendar")
|
||||
.HasAnnotation("MaxLength", 512);
|
||||
|
||||
@ -227,6 +233,10 @@ namespace Yavsc.Migrations
|
||||
|
||||
b.Property<bool>("TwoFactorEnabled");
|
||||
|
||||
b.Property<string>("UserCreated");
|
||||
|
||||
b.Property<string>("UserModified");
|
||||
|
||||
b.Property<string>("UserName")
|
||||
.HasAnnotation("MaxLength", 256);
|
||||
|
||||
@ -474,7 +484,8 @@ namespace Yavsc.Migrations
|
||||
b.Property<string>("AuthorId")
|
||||
.IsRequired();
|
||||
|
||||
b.Property<string>("Content");
|
||||
b.Property<string>("Content")
|
||||
.HasAnnotation("MaxLength", 1024);
|
||||
|
||||
b.Property<DateTime>("DateCreated");
|
||||
|
||||
@ -874,9 +885,11 @@ namespace Yavsc.Migrations
|
||||
b.Property<long>("Id")
|
||||
.ValueGeneratedOnAdd();
|
||||
|
||||
b.Property<string>("Description");
|
||||
b.Property<string>("Description")
|
||||
.HasAnnotation("MaxLength", 10240);
|
||||
|
||||
b.Property<string>("ShortName");
|
||||
b.Property<string>("ShortName")
|
||||
.HasAnnotation("MaxLength", 256);
|
||||
|
||||
b.Property<int>("Status");
|
||||
|
||||
@ -1560,6 +1573,10 @@ namespace Yavsc.Migrations
|
||||
b.HasOne("Yavsc.Models.ApplicationUser")
|
||||
.WithMany()
|
||||
.HasForeignKey("OwnerId");
|
||||
|
||||
b.HasOne("Yavsc.Models.ApplicationUser")
|
||||
.WithMany()
|
||||
.HasForeignKey("UserId");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("Yavsc.Models.Access.CircleAuthorizationToBlogPost", b =>
|
||||
|
Reference in New Issue
Block a user