using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace backend.Migrations { public partial class AddPersons : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "Persons", table: "Reservations", type: "integer", nullable: false, defaultValue: 0); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "Persons", table: "Reservations"); } } }