Files
CMS/src/CMSMicroservice.Infrastructure/Persistence/Migrations/20251122183829_u09.cs
masoodafar-web 6cd0a45336 update
2025-11-24 22:55:14 +03:30

31 lines
815 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace CMSMicroservice.Infrastructure.Persistence.Migrations
{
/// <inheritdoc />
public partial class u09 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "PaymentMethod",
schema: "CMS",
table: "UserOrders",
type: "int",
nullable: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "PaymentMethod",
schema: "CMS",
table: "UserOrders");
}
}
}