25 lines
650 B
C#
25 lines
650 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Ordering.API.Migrations
|
|
{
|
|
public partial class Migration2 : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "ProductName",
|
|
table: "OrderItem",
|
|
nullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "ProductName",
|
|
table: "OrderItem");
|
|
}
|
|
}
|
|
}
|