using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace PlaylistShared.Api.Data.Migrations
{
///
public partial class AddYandexAuthSessions_Header : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "HeaderCsfrToken",
table: "YandexAuthSessions",
type: "nvarchar(200)",
maxLength: 200,
nullable: true);
migrationBuilder.AddColumn(
name: "HeaderProcessId",
table: "YandexAuthSessions",
type: "nvarchar(200)",
maxLength: 200,
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "HeaderCsfrToken",
table: "YandexAuthSessions");
migrationBuilder.DropColumn(
name: "HeaderProcessId",
table: "YandexAuthSessions");
}
}
}