* refactor sqlite into separate library * support mysql * fixes * sql fixes * cleanup * update changelog
24 lines
667 B
C#
24 lines
667 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace ErsatzTV.Infrastructure.Sqlite.Migrations
|
|
{
|
|
public partial class Add_PlayoutAnchorInFlood : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<bool>(
|
|
name: "Anchor_InFlood",
|
|
table: "Playout",
|
|
type: "INTEGER",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Anchor_InFlood",
|
|
table: "Playout");
|
|
}
|
|
}
|
|
}
|