using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace DysonNetwork.Pass.Migrations
{
    /// 
    public partial class AddOrderProductIdentifier : Migration
    {
        /// 
        protected override void Up(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.AddColumn(
                name: "product_identifier",
                table: "payment_orders",
                type: "character varying(4096)",
                maxLength: 4096,
                nullable: true);
        }
        /// 
        protected override void Down(MigrationBuilder migrationBuilder)
        {
            migrationBuilder.DropColumn(
                name: "product_identifier",
                table: "payment_orders");
        }
    }
}