126 lines
5.0 KiB
C#
126 lines
5.0 KiB
C#
|
using System;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
#nullable disable
|
|||
|
|
|||
|
namespace FurnitureAssemblyDatabaseImplement.Migrations
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
public partial class InitialCreate : Migration
|
|||
|
{
|
|||
|
/// <inheritdoc />
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "Furnitures",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Id = table.Column<int>(type: "int", nullable: false)
|
|||
|
.Annotation("SqlServer:Identity", "1, 1"),
|
|||
|
FurnitureName = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|||
|
Price = table.Column<double>(type: "float", nullable: false)
|
|||
|
},
|
|||
|
constraints: table =>
|
|||
|
{
|
|||
|
table.PrimaryKey("PK_Furnitures", x => x.Id);
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "WorkPieces",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Id = table.Column<int>(type: "int", nullable: false)
|
|||
|
.Annotation("SqlServer:Identity", "1, 1"),
|
|||
|
WorkPieceName = table.Column<string>(type: "nvarchar(max)", nullable: false),
|
|||
|
Cost = table.Column<double>(type: "float", nullable: false)
|
|||
|
},
|
|||
|
constraints: table =>
|
|||
|
{
|
|||
|
table.PrimaryKey("PK_WorkPieces", x => x.Id);
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "Orders",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Id = table.Column<int>(type: "int", nullable: false)
|
|||
|
.Annotation("SqlServer:Identity", "1, 1"),
|
|||
|
FurnitureId = table.Column<int>(type: "int", nullable: false),
|
|||
|
Count = table.Column<int>(type: "int", nullable: false),
|
|||
|
Sum = table.Column<double>(type: "float", nullable: false),
|
|||
|
Status = table.Column<int>(type: "int", nullable: false),
|
|||
|
DateCreate = table.Column<DateTime>(type: "datetime2", nullable: false),
|
|||
|
DateImplement = table.Column<DateTime>(type: "datetime2", 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: "int", nullable: false)
|
|||
|
.Annotation("SqlServer:Identity", "1, 1"),
|
|||
|
FurnitureId = table.Column<int>(type: "int", nullable: false),
|
|||
|
WorkPieceId = table.Column<int>(type: "int", nullable: false),
|
|||
|
Count = table.Column<int>(type: "int", 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");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|