using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace AsbCloudDb.Migrations { public partial class Add_FK_PlanOperation_to_WellOperation : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "id_plan", table: "t_well_operation", type: "integer", nullable: true, comment: "Id плановой операции"); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "id_plan", table: "t_well_operation"); } } }