using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace gehGassi.Persistence.Migrations { /// public partial class DeviceChannelExtended : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Channel", table: "Devices", type: "nvarchar(512)", maxLength: 512, nullable: false, oldClrType: typeof(string), oldType: "nvarchar(128)", oldMaxLength: 128); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AlterColumn( name: "Channel", table: "Devices", type: "nvarchar(128)", maxLength: 128, nullable: false, oldClrType: typeof(string), oldType: "nvarchar(512)", oldMaxLength: 512); } } }