88 lines
3.3 KiB
C#
88 lines
3.3 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace BMA.EHR.Infrastructure.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class updatetableInsigniaPeriodaddInsigniaEmployee1 : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_InsigniaEmployees_InsigniaPeriods_InsigniaPeriodId",
|
|
table: "InsigniaEmployees");
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "RefId",
|
|
table: "InsigniaEmployees",
|
|
type: "longtext",
|
|
nullable: true,
|
|
comment: "id ตำแหน่งลูกจ้าง",
|
|
oldClrType: typeof(string),
|
|
oldType: "longtext",
|
|
oldNullable: true)
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.AlterColumn<Guid>(
|
|
name: "InsigniaPeriodId",
|
|
table: "InsigniaEmployees",
|
|
type: "char(36)",
|
|
nullable: false,
|
|
defaultValue: new Guid("00000000-0000-0000-0000-000000000000"),
|
|
collation: "ascii_general_ci",
|
|
oldClrType: typeof(Guid),
|
|
oldType: "char(36)",
|
|
oldNullable: true)
|
|
.OldAnnotation("Relational:Collation", "ascii_general_ci");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_InsigniaEmployees_InsigniaPeriods_InsigniaPeriodId",
|
|
table: "InsigniaEmployees",
|
|
column: "InsigniaPeriodId",
|
|
principalTable: "InsigniaPeriods",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Cascade);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropForeignKey(
|
|
name: "FK_InsigniaEmployees_InsigniaPeriods_InsigniaPeriodId",
|
|
table: "InsigniaEmployees");
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "RefId",
|
|
table: "InsigniaEmployees",
|
|
type: "longtext",
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldType: "longtext",
|
|
oldNullable: true,
|
|
oldComment: "id ตำแหน่งลูกจ้าง")
|
|
.Annotation("MySql:CharSet", "utf8mb4")
|
|
.OldAnnotation("MySql:CharSet", "utf8mb4");
|
|
|
|
migrationBuilder.AlterColumn<Guid>(
|
|
name: "InsigniaPeriodId",
|
|
table: "InsigniaEmployees",
|
|
type: "char(36)",
|
|
nullable: true,
|
|
collation: "ascii_general_ci",
|
|
oldClrType: typeof(Guid),
|
|
oldType: "char(36)")
|
|
.OldAnnotation("Relational:Collation", "ascii_general_ci");
|
|
|
|
migrationBuilder.AddForeignKey(
|
|
name: "FK_InsigniaEmployees_InsigniaPeriods_InsigniaPeriodId",
|
|
table: "InsigniaEmployees",
|
|
column: "InsigniaPeriodId",
|
|
principalTable: "InsigniaPeriods",
|
|
principalColumn: "Id");
|
|
}
|
|
}
|
|
}
|