ObjekteListe angefangen
This commit is contained in:
592
KanSan.Base/Migrations/20200317101951_Güteschutzverlinkungen.Designer.cs
generated
Normal file
592
KanSan.Base/Migrations/20200317101951_Güteschutzverlinkungen.Designer.cs
generated
Normal file
@@ -0,0 +1,592 @@
|
||||
// <auto-generated />
|
||||
using System;
|
||||
using KanSan.Base;
|
||||
using Microsoft.EntityFrameworkCore;
|
||||
using Microsoft.EntityFrameworkCore.Infrastructure;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
|
||||
namespace KanSan.Base.Migrations
|
||||
{
|
||||
[DbContext(typeof(KanSanContext))]
|
||||
[Migration("20200317101951_Güteschutzverlinkungen")]
|
||||
partial class Güteschutzverlinkungen
|
||||
{
|
||||
protected override void BuildTargetModel(ModelBuilder modelBuilder)
|
||||
{
|
||||
#pragma warning disable 612, 618
|
||||
modelBuilder
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn)
|
||||
.HasAnnotation("ProductVersion", "3.1.2")
|
||||
.HasAnnotation("Relational:MaxIdentifierLength", 63);
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Baustelle", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<string>("BaustelleNummer")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<string>("OrtTeil")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int?>("ProjektID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.HasIndex("ProjektID");
|
||||
|
||||
b.ToTable("Baustelle");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Fahrzeug", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<string>("Kennzeichen")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.ToTable("Fahrzeuge");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.GueteschutzProtokoll", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<int>("AussenTemp")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("Bericht")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("Dichtheit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<string>("Discriminator")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<bool>("Film")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<int>("KanalTemp")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int?>("SchadPositionID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("Sichtkontrolle")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("Video")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Wetter")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.HasIndex("SchadPositionID");
|
||||
|
||||
b.ToTable("GueteschutzProtokoll");
|
||||
|
||||
b.HasDiscriminator<string>("Discriminator").HasValue("GueteschutzProtokoll");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Kunde", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<string>("Nachname")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Ort")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("PLZ")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Strasse")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Vorname")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.ToTable("Kunden");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.LeitungsverzeichnisPosition", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<string>("Beschreibung")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Einheit")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<string>("Positionsnummer")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.ToTable("LeitungsverzeichnisPositionen");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Projekt", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<int?>("KundeID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("Ort")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Projektnummer")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.HasIndex("KundeID");
|
||||
|
||||
b.ToTable("Projekte");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Sanierungskonzept", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<int>("SanierungsTyp")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.ToTable("Sanierungskonzept");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Schaeden", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<bool>("Infiltation")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("RissBruchScherbe")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("SanierungsTyp")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int?>("SanierungskonzeptID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("SchadstelleFaekalienFrei")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int?>("SewerID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("StutzenEinragend")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("VorbehandeltFraeser")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("VorbehandeltHD")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("VorbehandeltMech")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("WurzelInkrustationAblagerungen")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.HasIndex("SanierungskonzeptID");
|
||||
|
||||
b.HasIndex("SewerID");
|
||||
|
||||
b.ToTable("Schaeden");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Sewer", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<int?>("BaustelleID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("BaustellensicherungErforderlich")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("DN")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("GenehmigungErforderlich")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<bool>("HaltungGespuelt")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Material")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("ObjektNummer")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int?>("PunktObenID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int>("PunktTypeOben")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int>("PunktTypeUnten")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int?>("PunktUntenID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("RohrleitungInBetrieb")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("SewerType")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("StrasseName")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<bool>("WasserHaltungDurchgefuehrt")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.HasIndex("BaustelleID");
|
||||
|
||||
b.HasIndex("PunktObenID");
|
||||
|
||||
b.HasIndex("PunktUntenID");
|
||||
|
||||
b.ToTable("Kanaele");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.SewerPoint", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<string>("Objektnummer")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.ToTable("SewerPoints");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Taetigkeiten", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<decimal>("Anzahl")
|
||||
.HasColumnType("numeric");
|
||||
|
||||
b.Property<int?>("FahrzeugID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int?>("GueteschutzProtokolID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<int?>("LeitungsverzeichnisPositionID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("Mitarbeiter")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<decimal>("Position")
|
||||
.HasColumnType("numeric");
|
||||
|
||||
b.Property<int?>("SanierungskonzeptID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<DateTime>("ZeitStempel")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.HasIndex("FahrzeugID");
|
||||
|
||||
b.HasIndex("GueteschutzProtokolID");
|
||||
|
||||
b.HasIndex("LeitungsverzeichnisPositionID");
|
||||
|
||||
b.HasIndex("SanierungskonzeptID");
|
||||
|
||||
b.ToTable("Taetigkeiten");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.HutprofilSan", b =>
|
||||
{
|
||||
b.HasBaseType("KanSan.Base.Models.GueteschutzProtokoll");
|
||||
|
||||
b.Property<DateTime>("AnpressenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("Auffaelligkeit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<DateTime>("EntlueftenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("FixierungAufPacker")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Flaechengewicht")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("HarzMaterialArt")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("HarzmaterialHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<bool>("InnenBeschichtung")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<string>("KompACharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("KompBCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<DateTime>("MischZeit")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<double>("PackerDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("PackerDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<string>("RohrDN")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<double>("SeitenKanalDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("SeitenKanalDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<string>("TraegerCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerKurzliner")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Winkel")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasDiscriminator().HasValue("HutprofilSan");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.KurzlinerSan", b =>
|
||||
{
|
||||
b.HasBaseType("KanSan.Base.Models.GueteschutzProtokoll");
|
||||
|
||||
b.Property<DateTime>("AnpressenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("Auffaelligkeit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<double>("Breit")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<DateTime>("EntlueftenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("FixierungAufPacker")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Flaechengewicht")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("HarzMaterialArt")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("HarzmaterialHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("KompACharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("KompBCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<double>("Lang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<DateTime>("MischZeit")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<double>("PackerDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("PackerDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<string>("TraegerCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerKurzliner")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasDiscriminator().HasValue("KurzlinerSan");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Baustelle", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Projekt", "Projekt")
|
||||
.WithMany()
|
||||
.HasForeignKey("ProjektID");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.GueteschutzProtokoll", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Schaeden", "SchadPosition")
|
||||
.WithMany()
|
||||
.HasForeignKey("SchadPositionID");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Projekt", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Kunde", "Kunde")
|
||||
.WithMany("Baustellen")
|
||||
.HasForeignKey("KundeID");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Schaeden", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Sanierungskonzept", "Sanierungskonzept")
|
||||
.WithMany()
|
||||
.HasForeignKey("SanierungskonzeptID");
|
||||
|
||||
b.HasOne("KanSan.Base.Models.Sewer", "Sewer")
|
||||
.WithMany("Schaeden")
|
||||
.HasForeignKey("SewerID");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Sewer", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Baustelle", "Baustelle")
|
||||
.WithMany("Kanaele")
|
||||
.HasForeignKey("BaustelleID");
|
||||
|
||||
b.HasOne("KanSan.Base.Models.SewerPoint", "PunktOben")
|
||||
.WithMany()
|
||||
.HasForeignKey("PunktObenID");
|
||||
|
||||
b.HasOne("KanSan.Base.Models.SewerPoint", "PunktUnten")
|
||||
.WithMany()
|
||||
.HasForeignKey("PunktUntenID");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Taetigkeiten", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Fahrzeug", "Fahrzeug")
|
||||
.WithMany()
|
||||
.HasForeignKey("FahrzeugID");
|
||||
|
||||
b.HasOne("KanSan.Base.Models.GueteschutzProtokoll", "GueteschutzProtokol")
|
||||
.WithMany()
|
||||
.HasForeignKey("GueteschutzProtokolID");
|
||||
|
||||
b.HasOne("KanSan.Base.Models.LeitungsverzeichnisPosition", "LeitungsverzeichnisPosition")
|
||||
.WithMany()
|
||||
.HasForeignKey("LeitungsverzeichnisPositionID");
|
||||
|
||||
b.HasOne("KanSan.Base.Models.Sanierungskonzept", "Sanierungskonzept")
|
||||
.WithMany("Taetigkeiten")
|
||||
.HasForeignKey("SanierungskonzeptID");
|
||||
});
|
||||
#pragma warning restore 612, 618
|
||||
}
|
||||
}
|
||||
}
|
||||
366
KanSan.Base/Migrations/20200317101951_Güteschutzverlinkungen.cs
Normal file
366
KanSan.Base/Migrations/20200317101951_Güteschutzverlinkungen.cs
Normal file
@@ -0,0 +1,366 @@
|
||||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
||||
|
||||
namespace KanSan.Base.Migrations
|
||||
{
|
||||
public partial class Güteschutzverlinkungen : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_KurzlinerSanierung_Schaeden_SchadPositionID",
|
||||
table: "KurzlinerSanierung");
|
||||
|
||||
migrationBuilder.DropTable(
|
||||
name: "HutprofilSanierung");
|
||||
|
||||
migrationBuilder.DropPrimaryKey(
|
||||
name: "PK_KurzlinerSanierung",
|
||||
table: "KurzlinerSanierung");
|
||||
|
||||
migrationBuilder.RenameTable(
|
||||
name: "KurzlinerSanierung",
|
||||
newName: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.RenameIndex(
|
||||
name: "IX_KurzlinerSanierung_SchadPositionID",
|
||||
table: "GueteschutzProtokoll",
|
||||
newName: "IX_GueteschutzProtokoll_SchadPositionID");
|
||||
|
||||
migrationBuilder.AddColumn<int>(
|
||||
name: "GueteschutzProtokolID",
|
||||
table: "Taetigkeiten",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "PackerDruckEnde",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "PackerDruckAnfang",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision");
|
||||
|
||||
migrationBuilder.AlterColumn<DateTime>(
|
||||
name: "MischZeit",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(DateTime),
|
||||
oldType: "timestamp without time zone");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "Lang",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision");
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "Flaechengewicht",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(int),
|
||||
oldType: "integer");
|
||||
|
||||
migrationBuilder.AlterColumn<bool>(
|
||||
name: "FixierungAufPacker",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(bool),
|
||||
oldType: "boolean");
|
||||
|
||||
migrationBuilder.AlterColumn<DateTime>(
|
||||
name: "EntlueftenPacker",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(DateTime),
|
||||
oldType: "timestamp without time zone");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "Breit",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(double),
|
||||
oldType: "double precision");
|
||||
|
||||
migrationBuilder.AlterColumn<bool>(
|
||||
name: "Auffaelligkeit",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(bool),
|
||||
oldType: "boolean");
|
||||
|
||||
migrationBuilder.AlterColumn<DateTime>(
|
||||
name: "AnpressenPacker",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true,
|
||||
oldClrType: typeof(DateTime),
|
||||
oldType: "timestamp without time zone");
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "Discriminator",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: false,
|
||||
defaultValue: "");
|
||||
|
||||
migrationBuilder.AddColumn<bool>(
|
||||
name: "InnenBeschichtung",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "RohrDN",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<double>(
|
||||
name: "SeitenKanalDruckAnfang",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<double>(
|
||||
name: "SeitenKanalDruckEnde",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "Winkel",
|
||||
table: "GueteschutzProtokoll",
|
||||
nullable: true);
|
||||
|
||||
migrationBuilder.AddPrimaryKey(
|
||||
name: "PK_GueteschutzProtokoll",
|
||||
table: "GueteschutzProtokoll",
|
||||
column: "ID");
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_Taetigkeiten_GueteschutzProtokolID",
|
||||
table: "Taetigkeiten",
|
||||
column: "GueteschutzProtokolID");
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_GueteschutzProtokoll_Schaeden_SchadPositionID",
|
||||
table: "GueteschutzProtokoll",
|
||||
column: "SchadPositionID",
|
||||
principalTable: "Schaeden",
|
||||
principalColumn: "ID",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_Taetigkeiten_GueteschutzProtokoll_GueteschutzProtokolID",
|
||||
table: "Taetigkeiten",
|
||||
column: "GueteschutzProtokolID",
|
||||
principalTable: "GueteschutzProtokoll",
|
||||
principalColumn: "ID",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_GueteschutzProtokoll_Schaeden_SchadPositionID",
|
||||
table: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.DropForeignKey(
|
||||
name: "FK_Taetigkeiten_GueteschutzProtokoll_GueteschutzProtokolID",
|
||||
table: "Taetigkeiten");
|
||||
|
||||
migrationBuilder.DropIndex(
|
||||
name: "IX_Taetigkeiten_GueteschutzProtokolID",
|
||||
table: "Taetigkeiten");
|
||||
|
||||
migrationBuilder.DropPrimaryKey(
|
||||
name: "PK_GueteschutzProtokoll",
|
||||
table: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "GueteschutzProtokolID",
|
||||
table: "Taetigkeiten");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "Discriminator",
|
||||
table: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "InnenBeschichtung",
|
||||
table: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "RohrDN",
|
||||
table: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "SeitenKanalDruckAnfang",
|
||||
table: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "SeitenKanalDruckEnde",
|
||||
table: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "Winkel",
|
||||
table: "GueteschutzProtokoll");
|
||||
|
||||
migrationBuilder.RenameTable(
|
||||
name: "GueteschutzProtokoll",
|
||||
newName: "KurzlinerSanierung");
|
||||
|
||||
migrationBuilder.RenameIndex(
|
||||
name: "IX_GueteschutzProtokoll_SchadPositionID",
|
||||
table: "KurzlinerSanierung",
|
||||
newName: "IX_KurzlinerSanierung_SchadPositionID");
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "Lang",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
oldClrType: typeof(double),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "Breit",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
oldClrType: typeof(double),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "PackerDruckEnde",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
oldClrType: typeof(double),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<double>(
|
||||
name: "PackerDruckAnfang",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "double precision",
|
||||
nullable: false,
|
||||
oldClrType: typeof(double),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<DateTime>(
|
||||
name: "MischZeit",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "timestamp without time zone",
|
||||
nullable: false,
|
||||
oldClrType: typeof(DateTime),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<int>(
|
||||
name: "Flaechengewicht",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "integer",
|
||||
nullable: false,
|
||||
oldClrType: typeof(int),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<bool>(
|
||||
name: "FixierungAufPacker",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "boolean",
|
||||
nullable: false,
|
||||
oldClrType: typeof(bool),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<DateTime>(
|
||||
name: "EntlueftenPacker",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "timestamp without time zone",
|
||||
nullable: false,
|
||||
oldClrType: typeof(DateTime),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<bool>(
|
||||
name: "Auffaelligkeit",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "boolean",
|
||||
nullable: false,
|
||||
oldClrType: typeof(bool),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AlterColumn<DateTime>(
|
||||
name: "AnpressenPacker",
|
||||
table: "KurzlinerSanierung",
|
||||
type: "timestamp without time zone",
|
||||
nullable: false,
|
||||
oldClrType: typeof(DateTime),
|
||||
oldNullable: true);
|
||||
|
||||
migrationBuilder.AddPrimaryKey(
|
||||
name: "PK_KurzlinerSanierung",
|
||||
table: "KurzlinerSanierung",
|
||||
column: "ID");
|
||||
|
||||
migrationBuilder.CreateTable(
|
||||
name: "HutprofilSanierung",
|
||||
columns: table => new
|
||||
{
|
||||
ID = table.Column<int>(type: "integer", nullable: false)
|
||||
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
||||
AnpressenPacker = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
||||
Auffaelligkeit = table.Column<bool>(type: "boolean", nullable: false),
|
||||
AussenTemp = table.Column<int>(type: "integer", nullable: false),
|
||||
Bericht = table.Column<bool>(type: "boolean", nullable: false),
|
||||
Dichtheit = table.Column<bool>(type: "boolean", nullable: false),
|
||||
EntlueftenPacker = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
||||
Film = table.Column<bool>(type: "boolean", nullable: false),
|
||||
FixierungAufPacker = table.Column<bool>(type: "boolean", nullable: false),
|
||||
Flaechengewicht = table.Column<int>(type: "integer", nullable: false),
|
||||
GuidNr = table.Column<Guid>(type: "uuid", nullable: false),
|
||||
HarzMaterialArt = table.Column<string>(type: "text", nullable: true),
|
||||
HarzmaterialHersteller = table.Column<string>(type: "text", nullable: true),
|
||||
InnenBeschichtung = table.Column<bool>(type: "boolean", nullable: false),
|
||||
KanalTemp = table.Column<int>(type: "integer", nullable: false),
|
||||
KompACharge = table.Column<string>(type: "text", nullable: true),
|
||||
KompBCharge = table.Column<string>(type: "text", nullable: true),
|
||||
MischZeit = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
||||
PackerDruckAnfang = table.Column<double>(type: "double precision", nullable: false),
|
||||
PackerDruckEnde = table.Column<double>(type: "double precision", nullable: false),
|
||||
RohrDN = table.Column<string>(type: "text", nullable: true),
|
||||
SchadPositionID = table.Column<int>(type: "integer", nullable: true),
|
||||
SeitenKanalDruckAnfang = table.Column<double>(type: "double precision", nullable: false),
|
||||
SeitenKanalDruckEnde = table.Column<double>(type: "double precision", nullable: false),
|
||||
Sichtkontrolle = table.Column<bool>(type: "boolean", nullable: false),
|
||||
TraegerCharge = table.Column<string>(type: "text", nullable: true),
|
||||
TraegerHersteller = table.Column<string>(type: "text", nullable: true),
|
||||
TraegerKurzliner = table.Column<string>(type: "text", nullable: true),
|
||||
Video = table.Column<bool>(type: "boolean", nullable: false),
|
||||
Wetter = table.Column<int>(type: "integer", nullable: false),
|
||||
Winkel = table.Column<string>(type: "text", nullable: true)
|
||||
},
|
||||
constraints: table =>
|
||||
{
|
||||
table.PrimaryKey("PK_HutprofilSanierung", x => x.ID);
|
||||
table.ForeignKey(
|
||||
name: "FK_HutprofilSanierung_Schaeden_SchadPositionID",
|
||||
column: x => x.SchadPositionID,
|
||||
principalTable: "Schaeden",
|
||||
principalColumn: "ID",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
});
|
||||
|
||||
migrationBuilder.CreateIndex(
|
||||
name: "IX_HutprofilSanierung_SchadPositionID",
|
||||
table: "HutprofilSanierung",
|
||||
column: "SchadPositionID");
|
||||
|
||||
migrationBuilder.AddForeignKey(
|
||||
name: "FK_KurzlinerSanierung_Schaeden_SchadPositionID",
|
||||
table: "KurzlinerSanierung",
|
||||
column: "SchadPositionID",
|
||||
principalTable: "Schaeden",
|
||||
principalColumn: "ID",
|
||||
onDelete: ReferentialAction.Restrict);
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -63,19 +63,13 @@ namespace KanSan.Base.Migrations
|
||||
b.ToTable("Fahrzeuge");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.HutprofilSan", b =>
|
||||
modelBuilder.Entity("KanSan.Base.Models.GueteschutzProtokoll", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<DateTime>("AnpressenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("Auffaelligkeit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("AussenTemp")
|
||||
.HasColumnType("integer");
|
||||
|
||||
@@ -85,86 +79,38 @@ namespace KanSan.Base.Migrations
|
||||
b.Property<bool>("Dichtheit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<DateTime>("EntlueftenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
b.Property<string>("Discriminator")
|
||||
.IsRequired()
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<bool>("Film")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("FixierungAufPacker")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Flaechengewicht")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<string>("HarzMaterialArt")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("HarzmaterialHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<bool>("InnenBeschichtung")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("KanalTemp")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("KompACharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("KompBCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<DateTime>("MischZeit")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<double>("PackerDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("PackerDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<string>("RohrDN")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int?>("SchadPositionID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<double>("SeitenKanalDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("SeitenKanalDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<bool>("Sichtkontrolle")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<string>("TraegerCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerKurzliner")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<bool>("Video")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Wetter")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("Winkel")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.HasIndex("SchadPositionID");
|
||||
|
||||
b.ToTable("HutprofilSanierung");
|
||||
b.ToTable("GueteschutzProtokoll");
|
||||
|
||||
b.HasDiscriminator<string>("Discriminator").HasValue("GueteschutzProtokoll");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Kunde", b =>
|
||||
@@ -197,101 +143,6 @@ namespace KanSan.Base.Migrations
|
||||
b.ToTable("Kunden");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.KurzlinerSan", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
.ValueGeneratedOnAdd()
|
||||
.HasColumnType("integer")
|
||||
.HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn);
|
||||
|
||||
b.Property<DateTime>("AnpressenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("Auffaelligkeit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("AussenTemp")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("Bericht")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<double>("Breit")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<bool>("Dichtheit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<DateTime>("EntlueftenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("Film")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<bool>("FixierungAufPacker")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Flaechengewicht")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
b.Property<string>("HarzMaterialArt")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("HarzmaterialHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<int>("KanalTemp")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("KompACharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("KompBCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<double>("Lang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<DateTime>("MischZeit")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<double>("PackerDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("PackerDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<int?>("SchadPositionID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<bool>("Sichtkontrolle")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<string>("TraegerCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerKurzliner")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<bool>("Video")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Wetter")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.HasKey("ID");
|
||||
|
||||
b.HasIndex("SchadPositionID");
|
||||
|
||||
b.ToTable("KurzlinerSanierung");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.LeitungsverzeichnisPosition", b =>
|
||||
{
|
||||
b.Property<int>("ID")
|
||||
@@ -509,6 +360,9 @@ namespace KanSan.Base.Migrations
|
||||
b.Property<int?>("FahrzeugID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<int?>("GueteschutzProtokolID")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<Guid>("GuidNr")
|
||||
.HasColumnType("uuid");
|
||||
|
||||
@@ -531,6 +385,8 @@ namespace KanSan.Base.Migrations
|
||||
|
||||
b.HasIndex("FahrzeugID");
|
||||
|
||||
b.HasIndex("GueteschutzProtokolID");
|
||||
|
||||
b.HasIndex("LeitungsverzeichnisPositionID");
|
||||
|
||||
b.HasIndex("SanierungskonzeptID");
|
||||
@@ -538,6 +394,131 @@ namespace KanSan.Base.Migrations
|
||||
b.ToTable("Taetigkeiten");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.HutprofilSan", b =>
|
||||
{
|
||||
b.HasBaseType("KanSan.Base.Models.GueteschutzProtokoll");
|
||||
|
||||
b.Property<DateTime>("AnpressenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("Auffaelligkeit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<DateTime>("EntlueftenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("FixierungAufPacker")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Flaechengewicht")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("HarzMaterialArt")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("HarzmaterialHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<bool>("InnenBeschichtung")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<string>("KompACharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("KompBCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<DateTime>("MischZeit")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<double>("PackerDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("PackerDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<string>("RohrDN")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<double>("SeitenKanalDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("SeitenKanalDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<string>("TraegerCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerKurzliner")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("Winkel")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasDiscriminator().HasValue("HutprofilSan");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.KurzlinerSan", b =>
|
||||
{
|
||||
b.HasBaseType("KanSan.Base.Models.GueteschutzProtokoll");
|
||||
|
||||
b.Property<DateTime>("AnpressenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("Auffaelligkeit")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<double>("Breit")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<DateTime>("EntlueftenPacker")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<bool>("FixierungAufPacker")
|
||||
.HasColumnType("boolean");
|
||||
|
||||
b.Property<int>("Flaechengewicht")
|
||||
.HasColumnType("integer");
|
||||
|
||||
b.Property<string>("HarzMaterialArt")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("HarzmaterialHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("KompACharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("KompBCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<double>("Lang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<DateTime>("MischZeit")
|
||||
.HasColumnType("timestamp without time zone");
|
||||
|
||||
b.Property<double>("PackerDruckAnfang")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<double>("PackerDruckEnde")
|
||||
.HasColumnType("double precision");
|
||||
|
||||
b.Property<string>("TraegerCharge")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerHersteller")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.Property<string>("TraegerKurzliner")
|
||||
.HasColumnType("text");
|
||||
|
||||
b.HasDiscriminator().HasValue("KurzlinerSan");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.Baustelle", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Projekt", "Projekt")
|
||||
@@ -545,14 +526,7 @@ namespace KanSan.Base.Migrations
|
||||
.HasForeignKey("ProjektID");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.HutprofilSan", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Schaeden", "SchadPosition")
|
||||
.WithMany()
|
||||
.HasForeignKey("SchadPositionID");
|
||||
});
|
||||
|
||||
modelBuilder.Entity("KanSan.Base.Models.KurzlinerSan", b =>
|
||||
modelBuilder.Entity("KanSan.Base.Models.GueteschutzProtokoll", b =>
|
||||
{
|
||||
b.HasOne("KanSan.Base.Models.Schaeden", "SchadPosition")
|
||||
.WithMany()
|
||||
@@ -598,6 +572,10 @@ namespace KanSan.Base.Migrations
|
||||
.WithMany()
|
||||
.HasForeignKey("FahrzeugID");
|
||||
|
||||
b.HasOne("KanSan.Base.Models.GueteschutzProtokoll", "GueteschutzProtokol")
|
||||
.WithMany()
|
||||
.HasForeignKey("GueteschutzProtokolID");
|
||||
|
||||
b.HasOne("KanSan.Base.Models.LeitungsverzeichnisPosition", "LeitungsverzeichnisPosition")
|
||||
.WithMany()
|
||||
.HasForeignKey("LeitungsverzeichnisPositionID");
|
||||
|
||||
Reference in New Issue
Block a user