using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PizzeriaDatabaseImplement.Migrations { /// public partial class implementors : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ImplementerId", table: "Orders", type: "int", nullable: true); migrationBuilder.CreateTable( name: "Implementers", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), ImplementerFIO = table.Column(type: "nvarchar(max)", nullable: false), Password = table.Column(type: "nvarchar(max)", nullable: false), WorkExperience = table.Column(type: "int", nullable: false), Qualification = table.Column(type: "int", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Implementers", x => x.Id); }); migrationBuilder.CreateIndex( name: "IX_Orders_ImplementerId", table: "Orders", column: "ImplementerId"); migrationBuilder.AddForeignKey( name: "FK_Orders_Implementers_ImplementerId", table: "Orders", column: "ImplementerId", principalTable: "Implementers", principalColumn: "Id"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropForeignKey( name: "FK_Orders_Implementers_ImplementerId", table: "Orders"); migrationBuilder.DropTable( name: "Implementers"); migrationBuilder.DropIndex( name: "IX_Orders_ImplementerId", table: "Orders"); migrationBuilder.DropColumn( name: "ImplementerId", table: "Orders"); } } }