CourseWorkElectronicsShop/ElectronicsShop/ElectronicsShopDataBaseImplement/Migrations/20240529092847_Init.cs

214 lines
8.7 KiB
C#
Raw Normal View History

using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ElectronicsShopDataBaseImplement.Migrations
{
/// <inheritdoc />
2024-05-28 11:42:47 +04:00
public partial class Init : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
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),
Password = table.Column<string>(type: "nvarchar(max)", nullable: false),
Email = table.Column<string>(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Clients", x => x.ID);
});
migrationBuilder.CreateTable(
2024-05-29 15:31:22 +04:00
name: "Employees",
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
2024-05-29 15:31:22 +04:00
EmployeeFIO = table.Column<string>(type: "nvarchar(max)", nullable: false),
Login = table.Column<string>(type: "nvarchar(max)", nullable: false),
Password = table.Column<string>(type: "nvarchar(max)", nullable: false)
},
constraints: table =>
{
2024-05-29 15:31:22 +04:00
table.PrimaryKey("PK_Employees", x => x.ID);
});
migrationBuilder.CreateTable(
2024-05-29 15:31:22 +04:00
name: "Orders",
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
2024-05-29 15:31:22 +04:00
Sum = table.Column<double>(type: "float", nullable: false),
ClientID = table.Column<int>(type: "int", nullable: false),
DateCreate = table.Column<DateTime>(type: "datetime2", nullable: false)
},
constraints: table =>
{
2024-05-29 15:31:22 +04:00
table.PrimaryKey("PK_Orders", x => x.ID);
table.ForeignKey(
name: "FK_Orders_Clients_ClientID",
column: x => x.ClientID,
principalTable: "Clients",
principalColumn: "ID",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
2024-05-29 15:31:22 +04:00
name: "CostItems",
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
2024-05-29 15:31:22 +04:00
EmployeeID = table.Column<int>(type: "int", nullable: false),
Name = table.Column<string>(type: "nvarchar(max)", nullable: false),
2024-05-27 19:12:19 +04:00
Price = table.Column<double>(type: "float", nullable: false),
2024-05-29 15:31:22 +04:00
CostNum = table.Column<int>(type: "int", nullable: false)
},
constraints: table =>
{
2024-05-29 15:31:22 +04:00
table.PrimaryKey("PK_CostItems", x => x.ID);
table.ForeignKey(
name: "FK_CostItems_Employees_EmployeeID",
column: x => x.EmployeeID,
principalTable: "Employees",
principalColumn: "ID",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
2024-05-29 15:31:22 +04:00
name: "Paymeants",
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
2024-05-29 15:31:22 +04:00
ProductID = table.Column<int>(type: "int", nullable: false),
OrderID = table.Column<int>(type: "int", nullable: false),
SumPayment = table.Column<double>(type: "float", nullable: false),
PayOption = table.Column<int>(type: "int", nullable: false),
PaymentID = table.Column<int>(type: "int", nullable: true)
},
constraints: table =>
{
2024-05-29 15:31:22 +04:00
table.PrimaryKey("PK_Paymeants", x => x.ID);
2024-05-27 19:12:19 +04:00
table.ForeignKey(
2024-05-29 15:31:22 +04:00
name: "FK_Paymeants_Orders_PaymentID",
column: x => x.PaymentID,
principalTable: "Orders",
principalColumn: "ID");
});
migrationBuilder.CreateTable(
name: "Products",
columns: table => new
{
ID = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
ProductName = table.Column<string>(type: "nvarchar(max)", nullable: false),
Price = table.Column<double>(type: "float", nullable: false),
CostItemID = table.Column<int>(type: "int", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_Products", x => x.ID);
table.ForeignKey(
name: "FK_Products_CostItems_CostItemID",
column: x => x.CostItemID,
principalTable: "CostItems",
2024-05-27 19:12:19 +04:00
principalColumn: "ID",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "OrderProducts",
columns: table => new
{
Id = table.Column<int>(type: "int", nullable: false)
.Annotation("SqlServer:Identity", "1, 1"),
2024-05-27 19:12:19 +04:00
OrderID = table.Column<int>(type: "int", nullable: false),
ProductID = table.Column<int>(type: "int", nullable: false),
Count = table.Column<int>(type: "int", nullable: false),
2024-05-27 19:12:19 +04:00
_productID = table.Column<int>(type: "int", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_OrderProducts", x => x.Id);
table.ForeignKey(
2024-05-27 19:12:19 +04:00
name: "FK_OrderProducts_Orders_ProductID",
column: x => x.ProductID,
principalTable: "Orders",
principalColumn: "ID",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
2024-05-27 19:12:19 +04:00
name: "FK_OrderProducts_Products__productID",
column: x => x._productID,
principalTable: "Products",
2024-05-27 19:12:19 +04:00
principalColumn: "ID");
});
2024-05-29 15:31:22 +04:00
migrationBuilder.CreateIndex(
name: "IX_CostItems_EmployeeID",
table: "CostItems",
column: "EmployeeID");
migrationBuilder.CreateIndex(
2024-05-27 19:12:19 +04:00
name: "IX_OrderProducts__productID",
table: "OrderProducts",
2024-05-27 19:12:19 +04:00
column: "_productID");
migrationBuilder.CreateIndex(
name: "IX_OrderProducts_ProductID",
table: "OrderProducts",
column: "ProductID");
2024-05-27 19:12:19 +04:00
migrationBuilder.CreateIndex(
name: "IX_Orders_ClientID",
table: "Orders",
column: "ClientID");
migrationBuilder.CreateIndex(
name: "IX_Paymeants_PaymentID",
table: "Paymeants",
column: "PaymentID");
2024-05-29 15:31:22 +04:00
migrationBuilder.CreateIndex(
name: "IX_Products_CostItemID",
table: "Products",
column: "CostItemID");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "OrderProducts");
migrationBuilder.DropTable(
2024-05-27 19:12:19 +04:00
name: "Paymeants");
migrationBuilder.DropTable(
name: "Products");
2024-05-27 19:12:19 +04:00
migrationBuilder.DropTable(
name: "Orders");
2024-05-29 15:31:22 +04:00
migrationBuilder.DropTable(
name: "CostItems");
2024-05-27 19:12:19 +04:00
migrationBuilder.DropTable(
name: "Clients");
2024-05-29 15:31:22 +04:00
migrationBuilder.DropTable(
name: "Employees");
}
}
}