using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace FoodsharingSiegen.Server.Migrations
{
///
public partial class ProposalRecordState : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "RecordState",
table: "Prospects",
type: "INTEGER",
nullable: false,
defaultValue: 10);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "RecordState",
table: "Prospects");
}
}
}