24 lines
671 B
C#
24 lines
671 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace CompanyManagment.EFCore.Migrations
|
|
{
|
|
public partial class jhsdh : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Signature",
|
|
table: "TextManager_TextManager");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Signature",
|
|
table: "TextManager_TextManager",
|
|
type: "nvarchar(max)",
|
|
nullable: true);
|
|
}
|
|
}
|
|
}
|