c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
28 lines
723 B
C#
28 lines
723 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Data.Migrations.Sqlite
|
|
{
|
|
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)
|
|
{
|
|
|
|
}
|
|
}
|
|
}
|