using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace OneForMe.Migrations { /// public partial class AddOrderNameField : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Name", table: "Orders", type: "TEXT", nullable: false, defaultValue: ""); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Name", table: "Orders"); } } }