23 lines
656 B
C#
23 lines
656 B
C#
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
namespace Data.Migrations.Postgresql
|
|||
|
{
|
|||
|
public partial class AddHitLocationReferenceToEFACSnapshot : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.AddColumn<string>(
|
|||
|
name: "HitLocationReference",
|
|||
|
table: "EFACSnapshot",
|
|||
|
nullable: true);
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropColumn(
|
|||
|
name: "HitLocationReference",
|
|||
|
table: "EFACSnapshot");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|