36a02b3d7b
fix issues with live radar
28 lines
740 B
C#
28 lines
740 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace SharedLibraryCore.Migrations.Postgresql
|
|
{
|
|
public partial class AddMissingActiveColumns : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "Active",
|
|
table: "EFACSnapshotVector3",
|
|
nullable: false,
|
|
defaultValue: true);
|
|
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "Active",
|
|
table: "Vector3",
|
|
nullable: false,
|
|
defaultValue: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|