This commit is contained in:
2016-10-23 01:31:09 +02:00
parent 1b89e65ee0
commit 690a5f8ee4
17 changed files with 2143 additions and 25 deletions

View File

@ -103,7 +103,8 @@ namespace Yavsc.Migrations
.ValueGeneratedOnAdd();
b.Property<string>("Address")
.IsRequired();
.IsRequired()
.HasAnnotation("MaxLength", 512);
b.Property<double>("Latitude");
@ -149,7 +150,8 @@ namespace Yavsc.Migrations
b.Property<int>("AccessFailedCount");
b.Property<string>("Avatar");
b.Property<string>("Avatar")
.HasAnnotation("MaxLength", 512);
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken();
@ -161,6 +163,9 @@ namespace Yavsc.Migrations
b.Property<bool>("EmailConfirmed");
b.Property<string>("FullName")
.HasAnnotation("MaxLength", 512);
b.Property<bool>("LockoutEnabled");
b.Property<DateTimeOffset?>("LockoutEnd");
@ -271,7 +276,7 @@ namespace Yavsc.Migrations
b.Property<string>("Description")
.IsRequired();
b.Property<long?>("EstimateId");
b.Property<long>("EstimateId");
b.Property<long?>("EstimateTemplateId");