2020-01-06 12:04:36 -05:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
namespace Data.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)
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|