70 lines
2.2 KiB
C#
70 lines
2.2 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
using RhSolutions.Models;
|
|
|
|
#nullable disable
|
|
|
|
namespace RhSolutions.Api.Migrations
|
|
{
|
|
[DbContext(typeof(RhSolutionsContext))]
|
|
[Migration("20230511043408_Init")]
|
|
partial class Init
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "7.0.5")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
|
|
|
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("RhSolutions.Models.Product", b =>
|
|
{
|
|
b.Property<string>("Id")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<double?>("DeliveryMakeUp")
|
|
.HasColumnType("double precision");
|
|
|
|
b.Property<List<string>>("DeprecatedSkus")
|
|
.IsRequired()
|
|
.HasColumnType("text[]");
|
|
|
|
b.Property<bool>("IsOnWarehouse")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("Name")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.Property<decimal>("Price")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<List<string>>("ProductLines")
|
|
.IsRequired()
|
|
.HasColumnType("text[]");
|
|
|
|
b.Property<int>("ProductMeasure")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("ProductSku")
|
|
.IsRequired()
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Products");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|