177 lines
6.1 KiB
C#
177 lines
6.1 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using DaSaSo.EntityFramework;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
namespace DaSaSo.EntityFramework.Migrations
|
|
{
|
|
[DbContext(typeof(DaSaSoDbContext))]
|
|
[Migration("20210915174236_ProjectReferenzAdded")]
|
|
partial class ProjectReferenzAdded
|
|
{
|
|
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 63)
|
|
.HasAnnotation("ProductVersion", "6.0.0-preview.7.21378.4")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<string>("BuildingSiteNumber")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ContactPerson")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Country")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<int?>("ProjectId")
|
|
.HasColumnType("integer");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ProjectId");
|
|
|
|
b.ToTable("Buildingsites");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.Client", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<string>("Country")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Firstname")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("LastName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Postcode")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("Street")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.ToTable("Clients");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int?>("ClientId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Name")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ClientId");
|
|
|
|
b.ToTable("Projects");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int?>("BuildingSiteId")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<int>("DN")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("ObjektName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PointFrom")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PointTo")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<decimal>("SewerLength")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<string>("StreetName")
|
|
.HasColumnType("text");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("BuildingSiteId");
|
|
|
|
b.ToTable("SewerObjects");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
|
|
{
|
|
b.HasOne("DaSaSo.Domain.Model.Project", "Project")
|
|
.WithMany("BuildingSites")
|
|
.HasForeignKey("ProjectId");
|
|
|
|
b.Navigation("Project");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
|
|
{
|
|
b.HasOne("DaSaSo.Domain.Model.Client", "Client")
|
|
.WithMany("Projects")
|
|
.HasForeignKey("ClientId");
|
|
|
|
b.Navigation("Client");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b =>
|
|
{
|
|
b.HasOne("DaSaSo.Domain.Model.Buildingsite", "BuildingSite")
|
|
.WithMany("SewerObjects")
|
|
.HasForeignKey("BuildingSiteId");
|
|
|
|
b.Navigation("BuildingSite");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.Buildingsite", b =>
|
|
{
|
|
b.Navigation("SewerObjects");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.Client", b =>
|
|
{
|
|
b.Navigation("Projects");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.Project", b =>
|
|
{
|
|
b.Navigation("BuildingSites");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|