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