127 lines
5.4 KiB
C#
127 lines
5.4 KiB
C#
|
using System;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace FurnitureAssemblyDatabaseImplement.Migrations
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class init : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "Furnitures",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|||
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|||
|
FurnitureName = table.Column<string>(type: "text", nullable: false),
|
|||
|
Price = table.Column<double>(type: "double precision", nullable: false)
|
|||
|
},
|
|||
|
constraints: table =>
|
|||
|
{
|
|||
|
table.PrimaryKey("PK_Furnitures", x => x.Id);
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "Workpieces",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|||
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|||
|
WorkpieceName = table.Column<string>(type: "text", nullable: false),
|
|||
|
Cost = table.Column<double>(type: "double precision", nullable: false)
|
|||
|
},
|
|||
|
constraints: table =>
|
|||
|
{
|
|||
|
table.PrimaryKey("PK_Workpieces", x => x.Id);
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "Orders",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|||
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|||
|
FurnitureId = table.Column<int>(type: "integer", 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_Furnitures_FurnitureId",
|
|||
|
column: x => x.FurnitureId,
|
|||
|
principalTable: "Furnitures",
|
|||
|
principalColumn: "Id",
|
|||
|
onDelete: ReferentialAction.Cascade);
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "FurnitureWorkpieces",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|||
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|||
|
FurnitureId = table.Column<int>(type: "integer", nullable: false),
|
|||
|
WorkpieceId = table.Column<int>(type: "integer", nullable: false),
|
|||
|
Count = table.Column<int>(type: "integer", nullable: false)
|
|||
|
},
|
|||
|
constraints: table =>
|
|||
|
{
|
|||
|
table.PrimaryKey("PK_FurnitureWorkpieces", x => x.Id);
|
|||
|
table.ForeignKey(
|
|||
|
name: "FK_FurnitureWorkpieces_Furnitures_FurnitureId",
|
|||
|
column: x => x.FurnitureId,
|
|||
|
principalTable: "Furnitures",
|
|||
|
principalColumn: "Id",
|
|||
|
onDelete: ReferentialAction.Cascade);
|
|||
|
table.ForeignKey(
|
|||
|
name: "FK_FurnitureWorkpieces_Workpieces_WorkpieceId",
|
|||
|
column: x => x.WorkpieceId,
|
|||
|
principalTable: "Workpieces",
|
|||
|
principalColumn: "Id",
|
|||
|
onDelete: ReferentialAction.Cascade);
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_FurnitureWorkpieces_FurnitureId",
|
|||
|
table: "FurnitureWorkpieces",
|
|||
|
column: "FurnitureId");
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_FurnitureWorkpieces_WorkpieceId",
|
|||
|
table: "FurnitureWorkpieces",
|
|||
|
column: "WorkpieceId");
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_Orders_FurnitureId",
|
|||
|
table: "Orders",
|
|||
|
column: "FurnitureId");
|
|||
|
}
|
|||
|
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropTable(
|
|||
|
name: "FurnitureWorkpieces");
|
|||
|
|
|||
|
migrationBuilder.DropTable(
|
|||
|
name: "Orders");
|
|||
|
|
|||
|
migrationBuilder.DropTable(
|
|||
|
name: "Workpieces");
|
|||
|
|
|||
|
migrationBuilder.DropTable(
|
|||
|
name: "Furnitures");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|