using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ComputerShopDatabaseImplement.Migrations { /// public partial class testmig : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Assemblies", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), AssemblyName = table.Column(type: "nvarchar(max)", nullable: false), Price = table.Column(type: "float", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Assemblies", x => x.Id); }); migrationBuilder.CreateTable( name: "Components", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ComponentName = table.Column(type: "nvarchar(max)", nullable: false), Cost = table.Column(type: "float", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Components", x => x.Id); }); migrationBuilder.CreateTable( name: "Orders", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Sum = table.Column(type: "float", nullable: false), Status = table.Column(type: "int", nullable: false), DateCreate = table.Column(type: "datetime2", nullable: false), DateImplement = table.Column(type: "datetime2", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Orders", x => x.Id); }); migrationBuilder.CreateTable( name: "Supplies", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), Status = table.Column(type: "int", nullable: false), DateCreate = table.Column(type: "datetime2", nullable: false), DateImplement = table.Column(type: "datetime2", nullable: true), OrderId = table.Column(type: "int", nullable: false), ReceivingId = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Supplies", x => x.Id); }); migrationBuilder.CreateTable( name: "AssemblyComponents", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), AssemblyId = table.Column(type: "int", nullable: false), ComponentId = table.Column(type: "int", nullable: false), Count = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_AssemblyComponents", x => x.Id); table.ForeignKey( name: "FK_AssemblyComponents_Assemblies_AssemblyId", column: x => x.AssemblyId, principalTable: "Assemblies", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_AssemblyComponents_Components_ComponentId", column: x => x.ComponentId, principalTable: "Components", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "Purchases", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ComponentName = table.Column(type: "nvarchar(max)", nullable: false), ComponentId = table.Column(type: "int", nullable: false), Count = table.Column(type: "int", nullable: false), Sum = table.Column(type: "float", nullable: false), Status = table.Column(type: "int", nullable: false), DateCreate = table.Column(type: "datetime2", nullable: false), DateImplement = table.Column(type: "datetime2", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Purchases", x => x.Id); table.ForeignKey( name: "FK_Purchases_Components_ComponentId", column: x => x.ComponentId, principalTable: "Components", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "AssemblyOrders", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), AssemblyId = table.Column(type: "int", nullable: false), OrderId = table.Column(type: "int", nullable: false), Count = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_AssemblyOrders", x => x.Id); table.ForeignKey( name: "FK_AssemblyOrders_Assemblies_AssemblyId", column: x => x.AssemblyId, principalTable: "Assemblies", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_AssemblyOrders_Orders_OrderId", column: x => x.OrderId, principalTable: "Orders", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "ComponentSupplies", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), SupplyId = table.Column(type: "int", nullable: false), ComponentId = table.Column(type: "int", nullable: false), Count = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_ComponentSupplies", x => x.Id); table.ForeignKey( name: "FK_ComponentSupplies_Components_ComponentId", column: x => x.ComponentId, principalTable: "Components", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_ComponentSupplies_Supplies_SupplyId", column: x => x.SupplyId, principalTable: "Supplies", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "EquipmentReceivings", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), DateImplement = table.Column(type: "datetime2", nullable: true), Status = table.Column(type: "int", nullable: false), SupplyId = table.Column(type: "int", nullable: true) }, constraints: table => { table.PrimaryKey("PK_EquipmentReceivings", x => x.Id); table.ForeignKey( name: "FK_EquipmentReceivings_Supplies_SupplyId", column: x => x.SupplyId, principalTable: "Supplies", principalColumn: "Id"); }); migrationBuilder.CreateTable( name: "SupplyOrders", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), OrderId = table.Column(type: "int", nullable: false), SupplyId = table.Column(type: "int", nullable: false), Count = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_SupplyOrders", x => x.Id); table.ForeignKey( name: "FK_SupplyOrders_Orders_OrderId", column: x => x.OrderId, principalTable: "Orders", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_SupplyOrders_Supplies_SupplyId", column: x => x.SupplyId, principalTable: "Supplies", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_AssemblyComponents_AssemblyId", table: "AssemblyComponents", column: "AssemblyId"); migrationBuilder.CreateIndex( name: "IX_AssemblyComponents_ComponentId", table: "AssemblyComponents", column: "ComponentId"); migrationBuilder.CreateIndex( name: "IX_AssemblyOrders_AssemblyId", table: "AssemblyOrders", column: "AssemblyId"); migrationBuilder.CreateIndex( name: "IX_AssemblyOrders_OrderId", table: "AssemblyOrders", column: "OrderId"); migrationBuilder.CreateIndex( name: "IX_ComponentSupplies_ComponentId", table: "ComponentSupplies", column: "ComponentId"); migrationBuilder.CreateIndex( name: "IX_ComponentSupplies_SupplyId", table: "ComponentSupplies", column: "SupplyId"); migrationBuilder.CreateIndex( name: "IX_EquipmentReceivings_SupplyId", table: "EquipmentReceivings", column: "SupplyId"); migrationBuilder.CreateIndex( name: "IX_Purchases_ComponentId", table: "Purchases", column: "ComponentId"); migrationBuilder.CreateIndex( name: "IX_SupplyOrders_OrderId", table: "SupplyOrders", column: "OrderId"); migrationBuilder.CreateIndex( name: "IX_SupplyOrders_SupplyId", table: "SupplyOrders", column: "SupplyId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "AssemblyComponents"); migrationBuilder.DropTable( name: "AssemblyOrders"); migrationBuilder.DropTable( name: "ComponentSupplies"); migrationBuilder.DropTable( name: "EquipmentReceivings"); migrationBuilder.DropTable( name: "Purchases"); migrationBuilder.DropTable( name: "SupplyOrders"); migrationBuilder.DropTable( name: "Assemblies"); migrationBuilder.DropTable( name: "Components"); migrationBuilder.DropTable( name: "Orders"); migrationBuilder.DropTable( name: "Supplies"); } } }