25 lines
762 B
C#
25 lines
762 B
C#
|
|
using System;
|
|||
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
namespace APT.Data.Migrations.Migrations
|
|||
|
|
{
|
|||
|
|
public partial class hmr2025072801 : Migration
|
|||
|
|
{
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AddColumn<Guid>(
|
|||
|
|
name: "SECURITY_INSPECTION_NOTICE_ID",
|
|||
|
|
table: "T_SK_SECURITY_INSPECTION_RECORD_SUMMARY",
|
|||
|
|
type: "uniqueidentifier",
|
|||
|
|
nullable: true);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.DropColumn(
|
|||
|
|
name: "SECURITY_INSPECTION_NOTICE_ID",
|
|||
|
|
table: "T_SK_SECURITY_INSPECTION_RECORD_SUMMARY");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|