...
This commit is contained in:
@@ -1463,16 +1463,22 @@ namespace Back.Migrations
|
||||
b.Property<int>("CODID")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("Count")
|
||||
.HasColumnType("int");
|
||||
b.Property<decimal>("Count")
|
||||
.HasColumnType("decimal(18,2)");
|
||||
|
||||
b.Property<string>("Date")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<bool>("Deleted")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.Property<bool>("ForSale")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.Property<int?>("InvoiceID")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("Type")
|
||||
.HasColumnType("int");
|
||||
|
||||
@@ -1498,13 +1504,19 @@ namespace Back.Migrations
|
||||
b.Property<int>("CODID")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("Count")
|
||||
.HasColumnType("int");
|
||||
b.Property<decimal>("Count")
|
||||
.HasColumnType("decimal(18,2)");
|
||||
|
||||
b.Property<string>("Date")
|
||||
.IsRequired()
|
||||
.HasColumnType("nvarchar(max)");
|
||||
|
||||
b.Property<bool>("Deleted")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.Property<int?>("InvoiceID")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<int>("Type")
|
||||
.HasColumnType("int");
|
||||
|
||||
|
Reference in New Issue
Block a user