mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-01-13 15:40:22 -05:00
29 lines
781 B
C#
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");
|
|
}
|
|
}
|
|
}
|