* add basic image library support * add image page * update changelog
27 lines
818 B
C#
27 lines
818 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace ErsatzTV.Infrastructure.MySql.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class Add_LocalLibrary_Images : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
// create local images library
|
|
migrationBuilder.Sql(
|
|
@"INSERT INTO Library (Name, MediaKind, MediaSourceId)
|
|
SELECT 'Images', 6, Id FROM
|
|
(SELECT LMS.Id FROM LocalMediaSource LMS LIMIT 1) AS A");
|
|
migrationBuilder.Sql("INSERT INTO LocalLibrary (Id) Values (last_insert_id())");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
}
|
|
}
|
|
}
|