using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace EllieBot.Migrations.Mysql { public partial class linkonlychannels : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "type", table: "imageonlychannels", type: "int", nullable: false, defaultValue: 0); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "type", table: "imageonlychannels"); } } }