155 lines
6.2 KiB
C#
Raw Normal View History

2024-03-22 09:14:00 +04:00
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace DinerDataBaseImplement.Migrations
{
/// <inheritdoc />
public partial class InitMigration : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
2024-05-01 21:05:07 +04:00
migrationBuilder.CreateTable(
name: "Clients",
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
ClientFIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
Email = table.Column<string>(type: "nvarchar(max)", nullable: false),
Password = table.Column<string>(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Clients", x => x.ID);
});
2024-03-22 09:14:00 +04:00
migrationBuilder.CreateTable(
name: "Components",
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
ComponentName = table.Column<string>(type: "nvarchar(max)", nullable: false),
Price = table.Column<double>(type: "float", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Components", x => x.ID);
});
migrationBuilder.CreateTable(
2024-05-01 21:05:07 +04:00
name: "Products",
2024-03-22 09:14:00 +04:00
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
2024-05-01 21:05:07 +04:00
ProductName = table.Column<string>(type: "nvarchar(max)", nullable: false),
Price = table.Column<double>(type: "float", nullable: false)
2024-03-22 09:14:00 +04:00
},
constraints: table =>
{
2024-05-01 21:05:07 +04:00
table.PrimaryKey("PK_Products", x => x.ID);
2024-03-22 09:14:00 +04:00
});
migrationBuilder.CreateTable(
2024-05-01 21:05:07 +04:00
name: "Orders",
2024-03-22 09:14:00 +04:00
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
2024-05-01 21:05:07 +04:00
ProductID = 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),
SnackID = table.Column<int>(type: "int", nullable: true),
ClientID = table.Column<int>(type: "int", nullable: true)
2024-03-22 09:14:00 +04:00
},
constraints: table =>
{
2024-05-01 21:05:07 +04:00
table.PrimaryKey("PK_Orders", x => x.ID);
table.ForeignKey(
name: "FK_Orders_Clients_ClientID",
column: x => x.ClientID,
principalTable: "Clients",
principalColumn: "ID");
table.ForeignKey(
name: "FK_Orders_Products_SnackID",
column: x => x.SnackID,
principalTable: "Products",
principalColumn: "ID");
2024-03-22 09:14:00 +04:00
});
migrationBuilder.CreateTable(
name: "ProductComponents",
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
ProductID = table.Column<int>(type: "int", nullable: false),
ComponentID = table.Column<int>(type: "int", nullable: false),
Count = table.Column<int>(type: "int", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_ProductComponents", x => x.ID);
table.ForeignKey(
name: "FK_ProductComponents_Components_ComponentID",
column: x => x.ComponentID,
principalTable: "Components",
principalColumn: "ID",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_ProductComponents_Products_ProductID",
column: x => x.ProductID,
2024-05-01 21:05:07 +04:00
principalTable: "Products",
2024-03-22 09:14:00 +04:00
principalColumn: "ID",
onDelete: ReferentialAction.Cascade);
});
2024-05-01 21:05:07 +04:00
migrationBuilder.CreateIndex(
name: "IX_Orders_ClientID",
table: "Orders",
column: "ClientID");
migrationBuilder.CreateIndex(
name: "IX_Orders_SnackID",
table: "Orders",
column: "SnackID");
2024-03-22 09:14:00 +04:00
migrationBuilder.CreateIndex(
name: "IX_ProductComponents_ComponentID",
table: "ProductComponents",
column: "ComponentID");
migrationBuilder.CreateIndex(
name: "IX_ProductComponents_ProductID",
table: "ProductComponents",
column: "ProductID");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "Orders");
migrationBuilder.DropTable(
name: "ProductComponents");
migrationBuilder.DropTable(
2024-05-01 21:05:07 +04:00
name: "Clients");
2024-03-22 09:14:00 +04:00
migrationBuilder.DropTable(
2024-04-19 11:14:33 +04:00
name: "Components");
2024-05-01 21:05:07 +04:00
migrationBuilder.DropTable(
name: "Products");
2024-03-22 09:14:00 +04:00
}
}
}