2020-01-06 12:04:36 -05:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
2020-11-27 22:52:52 -05:00
|
|
|
|
namespace SharedLibraryCore.Migrations.MySql
|
2020-01-06 12:04:36 -05:00
|
|
|
|
{
|
|
|
|
|
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)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|