using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Data.Migrations
{
///
public partial class StudentNameSplit : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.RenameColumn(
name: "Name",
table: "Students",
newName: "LastName");
migrationBuilder.AddColumn(
name: "FirstName",
table: "Students",
type: "TEXT",
nullable: false,
defaultValue: "");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "FirstName",
table: "Students");
migrationBuilder.RenameColumn(
name: "LastName",
table: "Students",
newName: "Name");
}
}
}