using System; using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace FileShare_EFCore.Migrations.SQLite { /// public partial class AutoMigration_20260522162758 : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "last-played-at", table: "managed-file-record", type: "TEXT", nullable: true); migrationBuilder.AddColumn( name: "thumbnail-path", table: "managed-file-record", type: "TEXT", maxLength: 512, nullable: true); migrationBuilder.AddColumn( name: "video-duration", table: "managed-file-record", type: "REAL", nullable: true); migrationBuilder.CreateIndex( name: "idx-managed-file-record-last-played-at", table: "managed-file-record", column: "last-played-at"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropIndex( name: "idx-managed-file-record-last-played-at", table: "managed-file-record"); migrationBuilder.DropColumn( name: "last-played-at", table: "managed-file-record"); migrationBuilder.DropColumn( name: "thumbnail-path", table: "managed-file-record"); migrationBuilder.DropColumn( name: "video-duration", table: "managed-file-record"); } } }