mirror of https://github.com/ErsatzTV/ErsatzTV.git
21 changed files with 3539 additions and 13 deletions
@ -0,0 +1,8 @@ |
|||||||
|
namespace ErsatzTV.Core.Domain |
||||||
|
{ |
||||||
|
public class Tag |
||||||
|
{ |
||||||
|
public int Id { get; set; } |
||||||
|
public string Name { get; set; } |
||||||
|
} |
||||||
|
} |
||||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,75 @@ |
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||||
|
|
||||||
|
namespace ErsatzTV.Infrastructure.Migrations |
||||||
|
{ |
||||||
|
public partial class Add_MetadataTags : Migration |
||||||
|
{ |
||||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||||
|
{ |
||||||
|
migrationBuilder.CreateTable( |
||||||
|
"Tag", |
||||||
|
table => new |
||||||
|
{ |
||||||
|
Id = table.Column<int>("INTEGER", nullable: false) |
||||||
|
.Annotation("Sqlite:Autoincrement", true), |
||||||
|
Name = table.Column<string>("TEXT", nullable: true), |
||||||
|
EpisodeMetadataId = table.Column<int>("INTEGER", nullable: true), |
||||||
|
MovieMetadataId = table.Column<int>("INTEGER", nullable: true), |
||||||
|
SeasonMetadataId = table.Column<int>("INTEGER", nullable: true), |
||||||
|
ShowMetadataId = table.Column<int>("INTEGER", nullable: true) |
||||||
|
}, |
||||||
|
constraints: table => |
||||||
|
{ |
||||||
|
table.PrimaryKey("PK_Tag", x => x.Id); |
||||||
|
table.ForeignKey( |
||||||
|
"FK_Tag_EpisodeMetadata_EpisodeMetadataId", |
||||||
|
x => x.EpisodeMetadataId, |
||||||
|
"EpisodeMetadata", |
||||||
|
"Id", |
||||||
|
onDelete: ReferentialAction.Restrict); |
||||||
|
table.ForeignKey( |
||||||
|
"FK_Tag_MovieMetadata_MovieMetadataId", |
||||||
|
x => x.MovieMetadataId, |
||||||
|
"MovieMetadata", |
||||||
|
"Id", |
||||||
|
onDelete: ReferentialAction.Cascade); |
||||||
|
table.ForeignKey( |
||||||
|
"FK_Tag_SeasonMetadata_SeasonMetadataId", |
||||||
|
x => x.SeasonMetadataId, |
||||||
|
"SeasonMetadata", |
||||||
|
"Id", |
||||||
|
onDelete: ReferentialAction.Restrict); |
||||||
|
table.ForeignKey( |
||||||
|
"FK_Tag_ShowMetadata_ShowMetadataId", |
||||||
|
x => x.ShowMetadataId, |
||||||
|
"ShowMetadata", |
||||||
|
"Id", |
||||||
|
onDelete: ReferentialAction.Cascade); |
||||||
|
}); |
||||||
|
|
||||||
|
migrationBuilder.CreateIndex( |
||||||
|
"IX_Tag_EpisodeMetadataId", |
||||||
|
"Tag", |
||||||
|
"EpisodeMetadataId"); |
||||||
|
|
||||||
|
migrationBuilder.CreateIndex( |
||||||
|
"IX_Tag_MovieMetadataId", |
||||||
|
"Tag", |
||||||
|
"MovieMetadataId"); |
||||||
|
|
||||||
|
migrationBuilder.CreateIndex( |
||||||
|
"IX_Tag_SeasonMetadataId", |
||||||
|
"Tag", |
||||||
|
"SeasonMetadataId"); |
||||||
|
|
||||||
|
migrationBuilder.CreateIndex( |
||||||
|
"IX_Tag_ShowMetadataId", |
||||||
|
"Tag", |
||||||
|
"ShowMetadataId"); |
||||||
|
} |
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder) => |
||||||
|
migrationBuilder.DropTable( |
||||||
|
"Tag"); |
||||||
|
} |
||||||
|
} |
||||||
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,18 @@ |
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||||
|
|
||||||
|
namespace ErsatzTV.Infrastructure.Migrations |
||||||
|
{ |
||||||
|
public partial class Reset_MetadataDateUpdated_Tags : Migration |
||||||
|
{ |
||||||
|
protected override void Up(MigrationBuilder migrationBuilder) |
||||||
|
{ |
||||||
|
migrationBuilder.Sql(@"UPDATE MovieMetadata SET DateUpdated = '0001-01-01 00:00:00'"); |
||||||
|
migrationBuilder.Sql(@"UPDATE ShowMetadata SET DateUpdated = '0001-01-01 00:00:00'"); |
||||||
|
migrationBuilder.Sql(@"UPDATE Library SET LastScan = '0001-01-01 00:00:00'"); |
||||||
|
} |
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue