Woohoo
This commit is contained in:
@@ -46,14 +46,14 @@ namespace GrossesMitainesAPI.Migrations
|
||||
b.Property<long>("Quantity")
|
||||
.HasColumnType("bigint");
|
||||
|
||||
b.Property<int>("Status")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("Title")
|
||||
.IsRequired()
|
||||
.HasMaxLength(255)
|
||||
.HasColumnType("nvarchar(255)");
|
||||
|
||||
b.Property<bool>("isDiscontinued")
|
||||
.HasColumnType("bit");
|
||||
|
||||
b.HasKey("Id");
|
||||
|
||||
b.ToTable("Products");
|
||||
@@ -67,8 +67,8 @@ namespace GrossesMitainesAPI.Migrations
|
||||
ImageName = "ceintureflechee",
|
||||
Price = 85.86m,
|
||||
Quantity = 1L,
|
||||
Title = "Ceinture flèchée",
|
||||
isDiscontinued = false
|
||||
Status = 4,
|
||||
Title = "Ceinture flèchée"
|
||||
},
|
||||
new
|
||||
{
|
||||
@@ -78,8 +78,8 @@ namespace GrossesMitainesAPI.Migrations
|
||||
ImageName = "pantouflesCH",
|
||||
Price = 15.64m,
|
||||
Quantity = 54L,
|
||||
Title = "Pantoufles du Canadien en Phentex",
|
||||
isDiscontinued = false
|
||||
Status = 0,
|
||||
Title = "Pantoufles du Canadien en Phentex"
|
||||
},
|
||||
new
|
||||
{
|
||||
@@ -89,8 +89,8 @@ namespace GrossesMitainesAPI.Migrations
|
||||
ImageName = "jeanlucmongrain",
|
||||
Price = 1453.12m,
|
||||
Quantity = 1L,
|
||||
Title = "Jean-Luc Mongrain",
|
||||
isDiscontinued = true
|
||||
Status = 3,
|
||||
Title = "Jean-Luc Mongrain"
|
||||
});
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
|
Reference in New Issue
Block a user