using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ArtPlatform.Database.Migrations
{
///
public partial class lmaomore : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DepositAmount",
table: "SellerServices");
migrationBuilder.DropColumn(
name: "DepositRequired",
table: "SellerServices");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "DepositAmount",
table: "SellerServices",
type: "numeric",
nullable: true);
migrationBuilder.AddColumn(
name: "DepositRequired",
table: "SellerServices",
type: "boolean",
nullable: false,
defaultValue: false);
}
}
}