using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Meezi.Infrastructure.Data.Migrations { /// public partial class AddCafeShowOnKoja : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ShowOnKoja", table: "Cafes", type: "boolean", nullable: false, defaultValue: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ShowOnKoja", table: "Cafes"); } } }