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