30 lines
776 B
C#
30 lines
776 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Housewives.Api.Migrations
|
|
{
|
|
public partial class FixedName : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "Housewives",
|
|
keyColumn: "Id",
|
|
keyValue: 4,
|
|
column: "Name",
|
|
value: "Heather Gay");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.UpdateData(
|
|
table: "Housewives",
|
|
keyColumn: "Id",
|
|
keyValue: 4,
|
|
column: "Name",
|
|
value: "Heathere Gay");
|
|
}
|
|
}
|
|
}
|