using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace FlexJobApi.Database.Migrations.Migrations
{
///
public partial class UpdateUser0819 : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "ElectronSignUserId",
table: "User",
type: "uniqueidentifier",
nullable: true);
migrationBuilder.UpdateData(
table: "User",
keyColumn: "Id",
keyValue: new Guid("11111111-1111-1111-1111-111111111111"),
column: "ElectronSignUserId",
value: null);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "ElectronSignUserId",
table: "User");
}
}
}