using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace bitforum.Migrations.DefaultDb { /// public partial class AddBannerTables : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Link", table: "Popup", type: "nvarchar(255)", maxLength: 255, nullable: true, oldClrType: typeof(string), oldType: "nvarchar(255)", oldMaxLength: 255); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Link", table: "Popup", type: "nvarchar(255)", maxLength: 255, nullable: false, defaultValue: "", oldClrType: typeof(string), oldType: "nvarchar(255)", oldMaxLength: 255, oldNullable: true); } } }