Files
Iris-Rec-2023-Server-Code/Migrations/20260326165257_accountsIdFix.cs
T
Exception 46589f2ef3 MOVEMENT
2026-05-09 14:13:43 -04:00

30 lines
752 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ir23.Migrations
{
/// <inheritdoc />
public partial class accountsIdFix : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "accountId",
table: "Accounts");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<long>(
name: "accountId",
table: "Accounts",
type: "bigint",
nullable: false,
defaultValue: 0L);
}
}
}