using Microsoft.EntityFrameworkCore.Migrations; namespace ThAmCo.Events.Data.Migrations { public partial class AddFoodReference : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "FoodReference", schema: "thamco.events", table: "Events", nullable: false, defaultValue: 0); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "FoodReference", schema: "thamco.events", table: "Events"); } } }