using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace vassago.Migrations { /// public partial class channeltype : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsDM", table: "Channels"); migrationBuilder.AddColumn( name: "ChannelType", table: "Channels", type: "integer", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ChannelType", table: "Channels"); migrationBuilder.AddColumn( name: "IsDM", table: "Channels", type: "boolean", nullable: false, defaultValue: false); } } }