forked from sanchezvem/PyroFetes
Fix Type errors
This commit is contained in:
@@ -503,11 +503,12 @@ namespace PyroFetes.Migrations
|
||||
|
||||
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
||||
|
||||
b.Property<int>("ApprovalNumber")
|
||||
.HasColumnType("int");
|
||||
b.Property<string>("ApprovalNumber")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<decimal>("Caliber")
|
||||
.HasColumnType("decimal(18,2)");
|
||||
b.Property<int>("Caliber")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("ClassificationId")
|
||||
.HasColumnType("int");
|
||||
@@ -1113,8 +1114,10 @@ namespace PyroFetes.Migrations
|
||||
.HasMaxLength(30)
|
||||
.HasColumnType("nvarchar(30)");
|
||||
|
||||
b.Property<int>("ZipCode")
|
||||
.HasColumnType("int");
|
||||
b.Property<string>("ZipCode")
|
||||
.IsRequired()
|
||||
.HasMaxLength(5)
|
||||
.HasColumnType("nvarchar(5)");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user