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.
47 lines
1.7 KiB
47 lines
1.7 KiB
using Microsoft.EntityFrameworkCore.Migrations; |
|
|
|
#nullable disable |
|
|
|
namespace ErsatzTV.Infrastructure.Sqlite.Migrations |
|
{ |
|
/// <inheritdoc /> |
|
public partial class Add_ImageFolderDuration : Migration |
|
{ |
|
/// <inheritdoc /> |
|
protected override void Up(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.CreateTable( |
|
name: "ImageFolderDuration", |
|
columns: table => new |
|
{ |
|
Id = table.Column<int>(type: "INTEGER", nullable: false) |
|
.Annotation("Sqlite:Autoincrement", true), |
|
LibraryFolderId = table.Column<int>(type: "INTEGER", nullable: false), |
|
DurationSeconds = table.Column<int>(type: "INTEGER", nullable: false) |
|
}, |
|
constraints: table => |
|
{ |
|
table.PrimaryKey("PK_ImageFolderDuration", x => x.Id); |
|
table.ForeignKey( |
|
name: "FK_ImageFolderDuration_LibraryFolder_LibraryFolderId", |
|
column: x => x.LibraryFolderId, |
|
principalTable: "LibraryFolder", |
|
principalColumn: "Id", |
|
onDelete: ReferentialAction.Cascade); |
|
}); |
|
|
|
migrationBuilder.CreateIndex( |
|
name: "IX_ImageFolderDuration_LibraryFolderId", |
|
table: "ImageFolderDuration", |
|
column: "LibraryFolderId", |
|
unique: true); |
|
} |
|
|
|
/// <inheritdoc /> |
|
protected override void Down(MigrationBuilder migrationBuilder) |
|
{ |
|
migrationBuilder.DropTable( |
|
name: "ImageFolderDuration"); |
|
} |
|
} |
|
}
|
|
|