31 lines
900 B
C#
31 lines
900 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace BMA.EHR.Infrastructure.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class updatetablecommandaddyear : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "Year",
|
|
table: "Commands",
|
|
type: "varchar(4)",
|
|
maxLength: 4,
|
|
nullable: true,
|
|
comment: "ปีรอบเงินเดือน")
|
|
.Annotation("MySql:CharSet", "utf8mb4");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "Year",
|
|
table: "Commands");
|
|
}
|
|
}
|
|
}
|