235 lines
8.1 KiB
C#
235 lines
8.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("20210916075225_SewerDamageAdded")]
|
|
partial class SewerDamageAdded
|
|
{
|
|
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.SewerDamage", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("integer")
|
|
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
|
|
|
b.Property<int>("DamageType")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<decimal>("Distance")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<int>("PreparationType")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<int?>("SewerObjectId")
|
|
.HasColumnType("integer");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("SewerObjectId");
|
|
|
|
b.ToTable("SewerDamages");
|
|
});
|
|
|
|
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<bool>("BuildingsiteBarier")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<int>("DN")
|
|
.HasColumnType("integer");
|
|
|
|
b.Property<string>("Material")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("ObjektName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("PermitNeeded")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<string>("PointFrom")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<string>("PointTo")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("SewerActivated")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<bool>("SewerCleaned")
|
|
.HasColumnType("boolean");
|
|
|
|
b.Property<decimal>("SewerLength")
|
|
.HasColumnType("numeric");
|
|
|
|
b.Property<string>("StreetName")
|
|
.HasColumnType("text");
|
|
|
|
b.Property<bool>("WaterBarrier")
|
|
.HasColumnType("boolean");
|
|
|
|
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.SewerDamage", b =>
|
|
{
|
|
b.HasOne("DaSaSo.Domain.Model.SewerObjects", "SewerObject")
|
|
.WithMany("SewerDamages")
|
|
.HasForeignKey("SewerObjectId");
|
|
|
|
b.Navigation("SewerObject");
|
|
});
|
|
|
|
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");
|
|
});
|
|
|
|
modelBuilder.Entity("DaSaSo.Domain.Model.SewerObjects", b =>
|
|
{
|
|
b.Navigation("SewerDamages");
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|