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.
30 lines
897 B
30 lines
897 B
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
namespace ErsatzTV.Infrastructure.Sqlite.Migrations |
|
{ |
|
public partial class MetadataSortTitle : Migration |
|
{ |
|
protected override void Up(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.AddColumn<string>( |
|
"Metadata_SortTitle", |
|
"MediaItems", |
|
"TEXT", |
|
nullable: true); |
|
|
|
migrationBuilder.Sql( |
|
@"UPDATE MediaItems |
|
SET Metadata_SortTitle = Metadata_Title"); |
|
|
|
migrationBuilder.Sql( |
|
@"UPDATE MediaItems |
|
SET Metadata_SortTitle = substr(Metadata_Title, 5) |
|
WHERE Metadata_Title LIKE 'the %'"); |
|
} |
|
|
|
protected override void Down(MigrationBuilder migrationBuilder) => |
|
migrationBuilder.DropColumn( |
|
"Metadata_SortTitle", |
|
"MediaItems"); |
|
} |
|
}
|
|
|