forked from ddrilling/AsbCloudServer
26 lines
663 B
C#
26 lines
663 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace AsbCloudDb.Migrations
|
|
{
|
|
public partial class Update_WellContacts_Set_FullName : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "fio",
|
|
table: "t_contact",
|
|
newName: "full_name");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.RenameColumn(
|
|
name: "full_name",
|
|
table: "t_contact",
|
|
newName: "fio");
|
|
}
|
|
}
|
|
}
|