using Microsoft.EntityFrameworkCore.Migrations; namespace Kehyeedra3.Migrations { public partial class MiningUpdateYeah : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "LastMine", table: "Users"); migrationBuilder.AddColumn( name: "LastMine", table: "Mining", nullable: false, defaultValue: 0ul); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "LastMine", table: "Mining"); migrationBuilder.AddColumn( name: "LastMine", table: "Users", type: "bigint unsigned", nullable: false, defaultValue: 0ul); } } }