using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace ROLAC.API.Migrations { /// public partial class AddPayerEinToChurchProfile : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "PayerEin", table: "ChurchProfiles", type: "character varying(20)", maxLength: 20, nullable: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "PayerEin", table: "ChurchProfiles"); } } }