1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

Add missing active columns with migration

This commit is contained in:
RaidMax
2020-01-06 11:04:36 -06:00
parent fbd8699329
commit 4a38268dfd
3 changed files with 972 additions and 15 deletions

View File

@ -0,0 +1,27 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace SharedLibraryCore.Migrations
{
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)
{
}
}
}