using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BrokerApiCore.Migrations
{
///
public partial class SchemaChanges_145503 : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "season_id",
table: "planet_exchange_orders",
type: "varchar(50)",
maxLength: 50,
nullable: false,
defaultValue: "",
comment: "시즌 아이디")
.Annotation("MySql:CharSet", "utf8mb4");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "season_id",
table: "planet_exchange_orders");
}
}
}