using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PARR.DAL.Migrations { /// public partial class tblTnkAddShortName : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropIndex( name: "IX_Tnks_EsppId", table: "Tnks"); migrationBuilder.AlterColumn( name: "EsppId", table: "Tnks", type: "integer", nullable: true, oldClrType: typeof(int), oldType: "integer"); migrationBuilder.AddColumn( name: "ShortName", table: "Tnks", type: "text", nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ShortName", table: "Tnks"); migrationBuilder.AlterColumn( name: "EsppId", table: "Tnks", type: "integer", nullable: false, defaultValue: 0, oldClrType: typeof(int), oldType: "integer", oldNullable: true); migrationBuilder.CreateIndex( name: "IX_Tnks_EsppId", table: "Tnks", column: "EsppId", unique: true); } } }