using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Infrastructure.Migrations.AppDb
{
///
public partial class AddCoinMarket : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "Market",
table: "Coin",
type: "nvarchar(30)",
maxLength: 30,
nullable: false,
defaultValue: "",
comment: "거래쌍 (KRW-BTC 등)");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Market",
table: "Coin");
}
}
}