feat: implement migration tracking and history management for PostgreSQL
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
// <copyright file="MigrationRecord.cs" company="PlaceholderCompany">
|
||||
// Copyright (c) PlaceholderCompany. All rights reserved.
|
||||
// </copyright>
|
||||
|
||||
namespace Jellyfin.Server.Implementations.Migrations;
|
||||
|
||||
/// <summary>Represents one row of the EF migrations history table.</summary>
|
||||
public sealed class MigrationRecord
|
||||
{
|
||||
/// <summary>Gets or sets the migration identifier.</summary>
|
||||
public string MigrationId { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>Gets or sets the product version that applied this migration.</summary>
|
||||
public string ProductVersion { get; set; } = string.Empty;
|
||||
}
|
||||
Reference in New Issue
Block a user