using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace PARR.DAL.Migrations { /// public partial class tblApplicationAddIndexNameClmn : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "IP", table: "Hosts", type: "text", nullable: true, oldClrType: typeof(string), oldType: "text"); migrationBuilder.CreateIndex( name: "IX_Applications_Name", table: "Applications", column: "Name", unique: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropIndex( name: "IX_Applications_Name", table: "Applications"); migrationBuilder.AlterColumn( name: "IP", table: "Hosts", type: "text", nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "text", oldNullable: true); } } }