using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace NadekoBot.Migrations.Mysql { public partial class shoprolereq : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "rolerequirement", table: "shopentry", type: "bigint unsigned", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "rolerequirement", table: "shopentry"); } } }