72 lines
2.3 KiB
C#
72 lines
2.3 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
using RhSolutions.Models;
|
|
|
|
#nullable disable
|
|
|
|
namespace RhSolutions.Api.Migrations
|
|
{
|
|
[DbContext(typeof(RhSolutionsContext))]
|
|
partial class RhSolutionsContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "8.0.0")
|
|
.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<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.HasIndex("Name")
|
|
.HasAnnotation("Npgsql:TsVectorConfig", "russian");
|
|
|
|
NpgsqlIndexBuilderExtensions.HasMethod(b.HasIndex("Name"), "GIN");
|
|
|
|
b.ToTable("Products");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|