using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace TakeoutSaaS.Infrastructure.Migrations
{
///
public partial class AddTenantVerificationSettlementChannels : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "AlipayPid",
table: "tenant_verification_profiles",
type: "character varying(64)",
maxLength: 64,
nullable: true,
comment: "支付宝 PID。");
migrationBuilder.AddColumn(
name: "WeChatMerchantNo",
table: "tenant_verification_profiles",
type: "character varying(64)",
maxLength: 64,
nullable: true,
comment: "微信商户号。");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "AlipayPid",
table: "tenant_verification_profiles");
migrationBuilder.DropColumn(
name: "WeChatMerchantNo",
table: "tenant_verification_profiles");
}
}
}