2024-03-04 22:33:22 +04:00
|
|
|
|
using System;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
|
|
namespace ComputersShopDataBaseImplement.Migrations
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
public partial class InitialCreate : Migration
|
|
|
|
|
{
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
2024-04-01 20:00:17 +04:00
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Clients",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
ClientFIO = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Email = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Password = table.Column<string>(type: "text", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_Clients", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
2024-03-04 22:33:22 +04:00
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Components",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
ComponentName = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Cost = table.Column<double>(type: "double precision", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_Components", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Computers",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
ComputerName = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Price = table.Column<double>(type: "double precision", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_Computers", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
2024-04-14 16:11:19 +04:00
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Implementers",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
ImplementerFIO = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
Password = table.Column<string>(type: "text", nullable: false),
|
|
|
|
|
WorkExperience = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Qualification = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_Implementers", x => x.Id);
|
|
|
|
|
});
|
|
|
|
|
|
2024-03-04 22:33:22 +04:00
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "ComputerComponents",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
ComputerId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
ComponentId = table.Column<int>(type: "integer", nullable: false),
|
|
|
|
|
Count = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
},
|
|
|
|
|
constraints: table =>
|
|
|
|
|
{
|
|
|
|
|
table.PrimaryKey("PK_ComputerComponents", x => x.Id);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_ComputerComponents_Components_ComponentId",
|
|
|
|
|
column: x => x.ComponentId,
|
|
|
|
|
principalTable: "Components",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_ComputerComponents_Computers_ComputerId",
|
|
|
|
|
column: x => x.ComputerId,
|
|
|
|
|
principalTable: "Computers",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable(
|
|
|
|
|
name: "Orders",
|
|
|
|
|
columns: table => new
|
|
|
|
|
{
|
|
|
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
|
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
|
|
|
ComputerId = table.Column<int>(type: "integer", nullable: false),
|
2024-04-01 20:00:17 +04:00
|
|
|
|
ClientId = table.Column<int>(type: "integer", nullable: false),
|
2024-04-14 16:11:19 +04:00
|
|
|
|
ImplementerId = table.Column<int>(type: "integer", nullable: true),
|
2024-03-04 22:33:22 +04:00
|
|
|
|
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);
|
2024-04-01 20:00:17 +04:00
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Orders_Clients_ClientId",
|
|
|
|
|
column: x => x.ClientId,
|
|
|
|
|
principalTable: "Clients",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
2024-03-04 22:33:22 +04:00
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Orders_Computers_ComputerId",
|
|
|
|
|
column: x => x.ComputerId,
|
|
|
|
|
principalTable: "Computers",
|
|
|
|
|
principalColumn: "Id",
|
|
|
|
|
onDelete: ReferentialAction.Cascade);
|
2024-04-14 16:11:19 +04:00
|
|
|
|
table.ForeignKey(
|
|
|
|
|
name: "FK_Orders_Implementers_ImplementerId",
|
|
|
|
|
column: x => x.ImplementerId,
|
|
|
|
|
principalTable: "Implementers",
|
|
|
|
|
principalColumn: "Id");
|
2024-03-04 22:33:22 +04:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_ComputerComponents_ComponentId",
|
|
|
|
|
table: "ComputerComponents",
|
|
|
|
|
column: "ComponentId");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_ComputerComponents_ComputerId",
|
|
|
|
|
table: "ComputerComponents",
|
|
|
|
|
column: "ComputerId");
|
|
|
|
|
|
2024-04-01 20:00:17 +04:00
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_Orders_ClientId",
|
|
|
|
|
table: "Orders",
|
|
|
|
|
column: "ClientId");
|
|
|
|
|
|
2024-03-04 22:33:22 +04:00
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_Orders_ComputerId",
|
|
|
|
|
table: "Orders",
|
|
|
|
|
column: "ComputerId");
|
2024-04-14 16:11:19 +04:00
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_Orders_ImplementerId",
|
|
|
|
|
table: "Orders",
|
|
|
|
|
column: "ImplementerId");
|
2024-03-04 22:33:22 +04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <inheritdoc />
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "ComputerComponents");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Orders");
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Components");
|
|
|
|
|
|
2024-04-01 20:00:17 +04:00
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Clients");
|
|
|
|
|
|
2024-03-04 22:33:22 +04:00
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Computers");
|
2024-04-14 16:11:19 +04:00
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable(
|
|
|
|
|
name: "Implementers");
|
2024-03-04 22:33:22 +04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|