mirror of https://github.com/ErsatzTV/ErsatzTV.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
607 B
18 lines
607 B
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
namespace ErsatzTV.Infrastructure.Migrations |
|
{ |
|
public partial class Update_LibraryPathLastScan_LibraryLastScan : Migration |
|
{ |
|
protected override void Up(MigrationBuilder migrationBuilder) => |
|
migrationBuilder.Sql( |
|
@"UPDATE LibraryPath SET LastScan = |
|
(SELECT LastScan FROM Library L |
|
INNER JOIN LocalLibrary LL on L.Id = LL.Id |
|
WHERE LibraryPath.LibraryId = L.Id)"); |
|
|
|
protected override void Down(MigrationBuilder migrationBuilder) |
|
{ |
|
} |
|
} |
|
}
|
|
|