2022-10-08 14:02:05 -04:00
|
|
|
|
// <auto-generated />
|
|
|
|
|
using GrossesMitainesAPI.Data;
|
|
|
|
|
using Microsoft.EntityFrameworkCore;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
|
|
namespace GrossesMitainesAPI.Migrations
|
|
|
|
|
{
|
|
|
|
|
[DbContext(typeof(InventoryContext))]
|
|
|
|
|
partial class InventoryContextModelSnapshot : ModelSnapshot
|
|
|
|
|
{
|
|
|
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
|
|
|
{
|
|
|
|
|
#pragma warning disable 612, 618
|
|
|
|
|
modelBuilder
|
|
|
|
|
.HasAnnotation("ProductVersion", "6.0.9")
|
|
|
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
|
|
|
|
|
|
|
|
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder, 1L, 1);
|
|
|
|
|
|
|
|
|
|
modelBuilder.Entity("GrossesMitainesAPI.Models.Product", b =>
|
|
|
|
|
{
|
|
|
|
|
b.Property<int>("Id")
|
|
|
|
|
.ValueGeneratedOnAdd()
|
|
|
|
|
.HasColumnType("int");
|
|
|
|
|
|
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"), 1L, 1);
|
|
|
|
|
|
2022-10-09 15:07:35 -04:00
|
|
|
|
b.Property<string>("Category")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
|
|
2022-10-08 14:02:05 -04:00
|
|
|
|
b.Property<string>("Description")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
|
|
2022-10-09 13:18:39 -04:00
|
|
|
|
b.Property<string>("ImageName")
|
2022-10-08 14:02:05 -04:00
|
|
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
|
|
|
|
|
|
b.Property<decimal>("Price")
|
|
|
|
|
.HasColumnType("decimal(18,2)");
|
|
|
|
|
|
2022-10-16 20:33:58 -04:00
|
|
|
|
b.Property<decimal>("PromoPrice")
|
|
|
|
|
.HasColumnType("decimal(18,2)");
|
|
|
|
|
|
2022-10-09 15:07:35 -04:00
|
|
|
|
b.Property<long>("Quantity")
|
|
|
|
|
.HasColumnType("bigint");
|
|
|
|
|
|
2022-10-16 11:25:21 -04:00
|
|
|
|
b.Property<int>("Status")
|
|
|
|
|
.HasColumnType("int");
|
|
|
|
|
|
2022-10-08 14:02:05 -04:00
|
|
|
|
b.Property<string>("Title")
|
|
|
|
|
.IsRequired()
|
|
|
|
|
.HasMaxLength(255)
|
|
|
|
|
.HasColumnType("nvarchar(255)");
|
|
|
|
|
|
|
|
|
|
b.HasKey("Id");
|
|
|
|
|
|
|
|
|
|
b.ToTable("Products");
|
|
|
|
|
|
|
|
|
|
b.HasData(
|
|
|
|
|
new
|
|
|
|
|
{
|
|
|
|
|
Id = 1,
|
2022-10-09 15:07:35 -04:00
|
|
|
|
Category = "Linge",
|
2022-10-08 14:02:05 -04:00
|
|
|
|
Description = "Pour faire votre propre bonhomme de 1837, comme dans le bon vieux temps.",
|
2022-10-09 13:18:39 -04:00
|
|
|
|
ImageName = "ceintureflechee",
|
2022-10-08 14:02:05 -04:00
|
|
|
|
Price = 85.86m,
|
2022-10-16 20:33:58 -04:00
|
|
|
|
PromoPrice = 0m,
|
2022-10-09 15:07:35 -04:00
|
|
|
|
Quantity = 1L,
|
2022-10-16 11:25:21 -04:00
|
|
|
|
Status = 4,
|
|
|
|
|
Title = "Ceinture flèchée"
|
2022-10-08 14:02:05 -04:00
|
|
|
|
},
|
|
|
|
|
new
|
|
|
|
|
{
|
|
|
|
|
Id = 2,
|
2022-10-09 15:07:35 -04:00
|
|
|
|
Category = "Linge",
|
2022-10-08 14:02:05 -04:00
|
|
|
|
Description = "Parce que ça sent la coupe!",
|
2022-10-09 13:18:39 -04:00
|
|
|
|
ImageName = "pantouflesCH",
|
2022-10-08 14:02:05 -04:00
|
|
|
|
Price = 15.64m,
|
2022-10-16 20:33:58 -04:00
|
|
|
|
PromoPrice = 0m,
|
2022-10-09 15:07:35 -04:00
|
|
|
|
Quantity = 54L,
|
2022-10-16 11:25:21 -04:00
|
|
|
|
Status = 0,
|
|
|
|
|
Title = "Pantoufles du Canadien en Phentex"
|
2022-10-08 14:02:05 -04:00
|
|
|
|
},
|
|
|
|
|
new
|
|
|
|
|
{
|
|
|
|
|
Id = 3,
|
2022-10-09 15:07:35 -04:00
|
|
|
|
Category = "Homme",
|
2022-10-08 14:02:05 -04:00
|
|
|
|
Description = "On ne lui ferait pas mal, en tout cas!!",
|
2022-10-09 13:18:39 -04:00
|
|
|
|
ImageName = "jeanlucmongrain",
|
2022-10-08 14:02:05 -04:00
|
|
|
|
Price = 1453.12m,
|
2022-10-16 20:33:58 -04:00
|
|
|
|
PromoPrice = 0m,
|
2022-10-09 15:07:35 -04:00
|
|
|
|
Quantity = 1L,
|
2022-10-16 11:25:21 -04:00
|
|
|
|
Status = 3,
|
|
|
|
|
Title = "Jean-Luc Mongrain"
|
2022-10-08 14:02:05 -04:00
|
|
|
|
});
|
|
|
|
|
});
|
|
|
|
|
#pragma warning restore 612, 618
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|