using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ErsatzTV.Infrastructure.Sqlite.Migrations { /// public partial class Add_ImageFolderDuration : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "ImageFolderDuration", columns: table => new { Id = table.Column(type: "INTEGER", nullable: false) .Annotation("Sqlite:Autoincrement", true), LibraryFolderId = table.Column(type: "INTEGER", nullable: false), DurationSeconds = table.Column(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); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "ImageFolderDuration"); } } }