Kavita/API/Data/Migrations/20260110164419_AppUserAuthKeyUtcMissing.cs
Joe Milazzo dec65b9262
More Polish (#4336)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
2026-01-10 09:06:52 -08:00

29 lines
781 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace API.Data.Migrations
{
/// <inheritdoc />
public partial class AppUserAuthKeyUtcMissing : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "LastAccessedAt",
table: "AppUserAuthKey",
newName: "LastAccessedAtUtc");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "LastAccessedAtUtc",
table: "AppUserAuthKey",
newName: "LastAccessedAt");
}
}
}