using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace BHServer.Migrations { /// public partial class UpdateProvinceTable : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ProvinceId", table: "Provinces", type: "int", nullable: false, defaultValue: 0); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ProvinceId", table: "Provinces"); } } }