using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.Sqlite.Migrations
{
///
public partial class Update_ImageFolderDuration : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "DurationSeconds",
table: "ImageMetadata",
type: "REAL",
nullable: true,
oldClrType: typeof(int),
oldType: "INTEGER",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "DurationSeconds",
table: "ImageFolderDuration",
type: "REAL",
nullable: false,
oldClrType: typeof(int),
oldType: "INTEGER");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn(
name: "DurationSeconds",
table: "ImageMetadata",
type: "INTEGER",
nullable: true,
oldClrType: typeof(double),
oldType: "REAL",
oldNullable: true);
migrationBuilder.AlterColumn(
name: "DurationSeconds",
table: "ImageFolderDuration",
type: "INTEGER",
nullable: false,
oldClrType: typeof(double),
oldType: "REAL");
}
}
}