.
This commit is contained in:
parent
4a252bf5b2
commit
6e5e0afa9e
17 changed files with 2143 additions and 25 deletions
|
|
@ -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");
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue