อนุมัติและส่งต่อ การปรับเลื่อน ค่าตอบแทน

This commit is contained in:
nakorn
2022-05-01 12:20:21 +07:00
parent 32280778e6
commit 42e1878aa8
21 changed files with 2503 additions and 0 deletions

View File

@@ -0,0 +1,92 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
namespace tb320eva.Migrations
{
public partial class AddPostponementStatus : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "postponement_status",
table: "eva_adjust_postponement",
maxLength: 5,
nullable: true);
migrationBuilder.AddColumn<int>(
name: "postponement_status_by",
table: "eva_adjust_postponement",
maxLength: 255,
nullable: true);
migrationBuilder.AddColumn<DateTime>(
name: "postponement_status_date",
table: "eva_adjust_postponement",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "postponement_status_note",
table: "eva_adjust_postponement",
maxLength: 1000,
nullable: true);
migrationBuilder.AddColumn<string>(
name: "quota_status",
table: "eva_adjust_postponement",
maxLength: 5,
nullable: true);
migrationBuilder.AddColumn<int>(
name: "quota_status_by",
table: "eva_adjust_postponement",
maxLength: 255,
nullable: true);
migrationBuilder.AddColumn<DateTime>(
name: "quota_status_date",
table: "eva_adjust_postponement",
nullable: true);
migrationBuilder.AddColumn<string>(
name: "quota_status_note",
table: "eva_adjust_postponement",
maxLength: 1000,
nullable: true);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "postponement_status",
table: "eva_adjust_postponement");
migrationBuilder.DropColumn(
name: "postponement_status_by",
table: "eva_adjust_postponement");
migrationBuilder.DropColumn(
name: "postponement_status_date",
table: "eva_adjust_postponement");
migrationBuilder.DropColumn(
name: "postponement_status_note",
table: "eva_adjust_postponement");
migrationBuilder.DropColumn(
name: "quota_status",
table: "eva_adjust_postponement");
migrationBuilder.DropColumn(
name: "quota_status_by",
table: "eva_adjust_postponement");
migrationBuilder.DropColumn(
name: "quota_status_date",
table: "eva_adjust_postponement");
migrationBuilder.DropColumn(
name: "quota_status_note",
table: "eva_adjust_postponement");
}
}
}