| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- using System;
- using Microsoft.EntityFrameworkCore.Metadata;
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace GreenTree.Strohrmann.ERP.Domain.Migrations
- {
- public partial class BusinessModel : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.CreateTable(
- name: "EmployeeDegrees",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Name = table.Column<string>(nullable: false),
- Value = table.Column<decimal>(nullable: false),
- Order = table.Column<int>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_EmployeeDegrees", x => x.Id);
- });
- migrationBuilder.CreateTable(
- name: "Suppliers",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Name = table.Column<string>(nullable: false),
- Description = table.Column<string>(nullable: true),
- Address = table.Column<string>(nullable: false),
- Town = table.Column<string>(nullable: false),
- ZipCode = table.Column<string>(nullable: false),
- Country = table.Column<string>(nullable: false),
- PhoneFirst = table.Column<string>(nullable: true),
- PhoneSecond = table.Column<string>(nullable: true),
- MailFirst = table.Column<string>(nullable: true),
- MailSecond = table.Column<string>(nullable: true),
- Comment = table.Column<string>(nullable: true)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Suppliers", x => x.Id);
- });
- migrationBuilder.CreateTable(
- name: "Taxes",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Name = table.Column<string>(nullable: false),
- ShortName = table.Column<string>(nullable: false),
- Value = table.Column<decimal>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Taxes", x => x.Id);
- });
- migrationBuilder.CreateTable(
- name: "Units",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Name = table.Column<string>(nullable: false),
- ShortName = table.Column<string>(nullable: false),
- Description = table.Column<string>(nullable: true)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Units", x => x.Id);
- });
- migrationBuilder.CreateTable(
- name: "Employees",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Firstname = table.Column<string>(nullable: false),
- Lastname = table.Column<string>(nullable: false),
- MailAddress = table.Column<string>(nullable: true),
- Birthdate = table.Column<DateTime>(nullable: true),
- EmployeeDegreeId = table.Column<int>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Employees", x => x.Id);
- table.ForeignKey(
- name: "FK_Employees_EmployeeDegrees_EmployeeDegreeId",
- column: x => x.EmployeeDegreeId,
- principalTable: "EmployeeDegrees",
- principalColumn: "Id",
- onDelete: ReferentialAction.Restrict);
- });
- migrationBuilder.CreateTable(
- name: "Customers",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Firstname = table.Column<string>(nullable: false),
- Lastname = table.Column<string>(nullable: false),
- CompanyName = table.Column<string>(nullable: true),
- Address = table.Column<string>(nullable: false),
- Town = table.Column<string>(nullable: false),
- ZipCode = table.Column<string>(nullable: false),
- Country = table.Column<string>(nullable: false),
- TaxId = table.Column<int>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Customers", x => x.Id);
- table.ForeignKey(
- name: "FK_Customers_Taxes_TaxId",
- column: x => x.TaxId,
- principalTable: "Taxes",
- principalColumn: "Id",
- onDelete: ReferentialAction.Restrict);
- });
- migrationBuilder.CreateTable(
- name: "Materials",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Name = table.Column<string>(nullable: false),
- ItemNumber = table.Column<string>(nullable: false),
- Description = table.Column<string>(nullable: false),
- NetValue = table.Column<decimal>(nullable: false),
- Height = table.Column<decimal>(nullable: false),
- Width = table.Column<decimal>(nullable: false),
- Depth = table.Column<decimal>(nullable: false),
- DefaultUnitId = table.Column<int>(nullable: false),
- SupplierId = table.Column<int>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Materials", x => x.Id);
- table.ForeignKey(
- name: "FK_Materials_Units_DefaultUnitId",
- column: x => x.DefaultUnitId,
- principalTable: "Units",
- principalColumn: "Id",
- onDelete: ReferentialAction.Restrict);
- table.ForeignKey(
- name: "FK_Materials_Suppliers_SupplierId",
- column: x => x.SupplierId,
- principalTable: "Suppliers",
- principalColumn: "Id",
- onDelete: ReferentialAction.Restrict);
- });
- migrationBuilder.CreateTable(
- name: "Crafts",
- columns: table => new
- {
- Id = table.Column<int>(nullable: false)
- .Annotation("MySql:ValueGenerationStrategy", MySqlValueGenerationStrategy.IdentityColumn),
- Name = table.Column<string>(nullable: false),
- CreationDate = table.Column<DateTime>(nullable: false),
- CustomerId = table.Column<int>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_Crafts", x => x.Id);
- table.ForeignKey(
- name: "FK_Crafts_Customers_CustomerId",
- column: x => x.CustomerId,
- principalTable: "Customers",
- principalColumn: "Id",
- onDelete: ReferentialAction.Restrict);
- });
- migrationBuilder.CreateTable(
- name: "CraftEmployees",
- columns: table => new
- {
- CraftId = table.Column<int>(nullable: false),
- EmployeeId = table.Column<int>(nullable: false),
- Amount = table.Column<decimal>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_CraftEmployees", x => new { x.CraftId, x.EmployeeId });
- table.ForeignKey(
- name: "FK_CraftEmployees_Crafts_CraftId",
- column: x => x.CraftId,
- principalTable: "Crafts",
- principalColumn: "Id",
- onDelete: ReferentialAction.Cascade);
- table.ForeignKey(
- name: "FK_CraftEmployees_Employees_EmployeeId",
- column: x => x.EmployeeId,
- principalTable: "Employees",
- principalColumn: "Id",
- onDelete: ReferentialAction.Cascade);
- });
- migrationBuilder.CreateTable(
- name: "CraftMaterials",
- columns: table => new
- {
- CraftId = table.Column<int>(nullable: false),
- MaterialId = table.Column<int>(nullable: false),
- Amount = table.Column<decimal>(nullable: false)
- },
- constraints: table =>
- {
- table.PrimaryKey("PK_CraftMaterials", x => new { x.CraftId, x.MaterialId });
- table.ForeignKey(
- name: "FK_CraftMaterials_Crafts_CraftId",
- column: x => x.CraftId,
- principalTable: "Crafts",
- principalColumn: "Id",
- onDelete: ReferentialAction.Cascade);
- table.ForeignKey(
- name: "FK_CraftMaterials_Materials_MaterialId",
- column: x => x.MaterialId,
- principalTable: "Materials",
- principalColumn: "Id",
- onDelete: ReferentialAction.Cascade);
- });
- migrationBuilder.InsertData(
- table: "Taxes",
- columns: new[] { "Id", "Name", "ShortName", "Value" },
- values: new object[,]
- {
- { 1, "Deutschland Umsatzsteuer", "Umst. (19%)", 0.19m },
- { 2, "Deutschland Umsatzsteuer 2020", "Umst. (16%) 2020", 0.16m }
- });
- migrationBuilder.InsertData(
- table: "Units",
- columns: new[] { "Id", "Description", "Name", "ShortName" },
- values: new object[,]
- {
- { 1, "Angabe in Einheit Meter", "Meter", "m" },
- { 2, "Angabe in Einheit Quadratmeter", "Quadratmeter", "m²" },
- { 3, "Angabe in Einheit Kubikmeter", "Kubikmeter", "m³" },
- { 4, "Angabe in Einheit Liter", "Liter", "l" },
- { 5, "Angabe in Stückzahl", "Stück", "Stck." },
- { 6, "Angabe in Stückzahl", "Kilogramm", "Kg" },
- { 7, "Angabe in Zeitstunden", "Stunden", "Std." }
- });
- migrationBuilder.CreateIndex(
- name: "IX_CraftEmployees_EmployeeId",
- table: "CraftEmployees",
- column: "EmployeeId");
- migrationBuilder.CreateIndex(
- name: "IX_CraftMaterials_MaterialId",
- table: "CraftMaterials",
- column: "MaterialId");
- migrationBuilder.CreateIndex(
- name: "IX_Crafts_CustomerId",
- table: "Crafts",
- column: "CustomerId");
- migrationBuilder.CreateIndex(
- name: "IX_Customers_TaxId",
- table: "Customers",
- column: "TaxId");
- migrationBuilder.CreateIndex(
- name: "IX_Employees_EmployeeDegreeId",
- table: "Employees",
- column: "EmployeeDegreeId");
- migrationBuilder.CreateIndex(
- name: "IX_Materials_DefaultUnitId",
- table: "Materials",
- column: "DefaultUnitId");
- migrationBuilder.CreateIndex(
- name: "IX_Materials_SupplierId",
- table: "Materials",
- column: "SupplierId");
- }
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropTable(
- name: "CraftEmployees");
- migrationBuilder.DropTable(
- name: "CraftMaterials");
- migrationBuilder.DropTable(
- name: "Employees");
- migrationBuilder.DropTable(
- name: "Crafts");
- migrationBuilder.DropTable(
- name: "Materials");
- migrationBuilder.DropTable(
- name: "EmployeeDegrees");
- migrationBuilder.DropTable(
- name: "Customers");
- migrationBuilder.DropTable(
- name: "Units");
- migrationBuilder.DropTable(
- name: "Suppliers");
- migrationBuilder.DropTable(
- name: "Taxes");
- }
- }
- }
|