using System; using Microsoft.EntityFrameworkCore.Migrations; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace ComputersShopDataBaseImplement.Migrations { /// public partial class InitialCreate : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Clients", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), ClientFIO = table.Column(type: "text", nullable: false), Email = table.Column(type: "text", nullable: false), Password = table.Column(type: "text", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Clients", x => x.Id); }); migrationBuilder.CreateTable( name: "Components", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), ComponentName = table.Column(type: "text", nullable: false), Cost = table.Column(type: "double precision", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Components", x => x.Id); }); migrationBuilder.CreateTable( name: "Computers", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), ComputerName = table.Column(type: "text", nullable: false), Price = table.Column(type: "double precision", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Computers", x => x.Id); }); migrationBuilder.CreateTable( name: "Implementers", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), ImplementerFIO = table.Column(type: "text", nullable: false), Password = table.Column(type: "text", nullable: false), WorkExperience = table.Column(type: "integer", nullable: false), Qualification = table.Column(type: "integer", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Implementers", x => x.Id); }); migrationBuilder.CreateTable( name: "ComputerComponents", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), ComputerId = table.Column(type: "integer", nullable: false), ComponentId = table.Column(type: "integer", nullable: false), Count = table.Column(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(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), ComputerId = table.Column(type: "integer", nullable: false), ClientId = table.Column(type: "integer", nullable: false), ImplementerId = table.Column(type: "integer", nullable: true), Count = table.Column(type: "integer", nullable: false), Sum = table.Column(type: "double precision", nullable: false), Status = table.Column(type: "integer", nullable: false), DateCreate = table.Column(type: "timestamp with time zone", nullable: false), DateImplement = table.Column(type: "timestamp with time zone", nullable: true) }, constraints: table => { 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); table.ForeignKey( name: "FK_Orders_Computers_ComputerId", column: x => x.ComputerId, principalTable: "Computers", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_Orders_Implementers_ImplementerId", column: x => x.ImplementerId, principalTable: "Implementers", principalColumn: "Id"); }); migrationBuilder.CreateIndex( name: "IX_ComputerComponents_ComponentId", table: "ComputerComponents", column: "ComponentId"); migrationBuilder.CreateIndex( name: "IX_ComputerComponents_ComputerId", table: "ComputerComponents", column: "ComputerId"); migrationBuilder.CreateIndex( name: "IX_Orders_ClientId", table: "Orders", column: "ClientId"); migrationBuilder.CreateIndex( name: "IX_Orders_ComputerId", table: "Orders", column: "ComputerId"); migrationBuilder.CreateIndex( name: "IX_Orders_ImplementerId", table: "Orders", column: "ImplementerId"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "ComputerComponents"); migrationBuilder.DropTable( name: "Orders"); migrationBuilder.DropTable( name: "Components"); migrationBuilder.DropTable( name: "Clients"); migrationBuilder.DropTable( name: "Computers"); migrationBuilder.DropTable( name: "Implementers"); } } }