128 lines
5.4 KiB
C#
128 lines
5.4 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace PlumbingRepairDatabaseImplement.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class InitMigration : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "Components",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
ComponentName = table.Column<string>(type: "text", nullable: false),
|
|
Cost = table.Column<double>(type: "double precision", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Components", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Works",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
WorkName = table.Column<string>(type: "text", nullable: false),
|
|
Price = table.Column<double>(type: "double precision", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Works", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Orders",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
WorkId = table.Column<int>(type: "integer", nullable: false),
|
|
WorkName = table.Column<string>(type: "text", nullable: false),
|
|
Count = table.Column<int>(type: "integer", nullable: false),
|
|
Sum = table.Column<double>(type: "double precision", nullable: false),
|
|
Status = table.Column<int>(type: "integer", nullable: false),
|
|
DateCreate = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
DateImplement = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Orders", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Orders_Works_WorkId",
|
|
column: x => x.WorkId,
|
|
principalTable: "Works",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "WorkComponents",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
WorkId = table.Column<int>(type: "integer", nullable: false),
|
|
ComponentId = table.Column<int>(type: "integer", nullable: false),
|
|
Count = table.Column<int>(type: "integer", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_WorkComponents", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_WorkComponents_Components_ComponentId",
|
|
column: x => x.ComponentId,
|
|
principalTable: "Components",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
table.ForeignKey(
|
|
name: "FK_WorkComponents_Works_WorkId",
|
|
column: x => x.WorkId,
|
|
principalTable: "Works",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Orders_WorkId",
|
|
table: "Orders",
|
|
column: "WorkId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_WorkComponents_ComponentId",
|
|
table: "WorkComponents",
|
|
column: "ComponentId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_WorkComponents_WorkId",
|
|
table: "WorkComponents",
|
|
column: "WorkId");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Orders");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "WorkComponents");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Components");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Works");
|
|
}
|
|
}
|
|
}
|