using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Infrastructure.Migrations.AppDb
{
///
public partial class AddReplacedByTokenToRefreshToken : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "ReplacedByToken",
table: "RefreshToken",
type: "nvarchar(256)",
maxLength: 256,
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ReplacedByToken",
table: "RefreshToken");
}
}
}