33 lines
1.0 KiB
C#
33 lines
1.0 KiB
C#
|
|
using System;
|
|||
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
namespace APT.Data.Migrations.Migrations
|
|||
|
|
{
|
|||
|
|
public partial class wyw2025070202 : Migration
|
|||
|
|
{
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AlterColumn<Guid>(
|
|||
|
|
name: "IMG_FILE_ID",
|
|||
|
|
table: "T_PF_FILE_DB",
|
|||
|
|
type: "uniqueidentifier",
|
|||
|
|
nullable: true,
|
|||
|
|
oldClrType: typeof(Guid),
|
|||
|
|
oldType: "uniqueidentifier");
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AlterColumn<Guid>(
|
|||
|
|
name: "IMG_FILE_ID",
|
|||
|
|
table: "T_PF_FILE_DB",
|
|||
|
|
type: "uniqueidentifier",
|
|||
|
|
nullable: false,
|
|||
|
|
defaultValue: new Guid("00000000-0000-0000-0000-000000000000"),
|
|||
|
|
oldClrType: typeof(Guid),
|
|||
|
|
oldType: "uniqueidentifier",
|
|||
|
|
oldNullable: true);
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|