34 lines
991 B
C#
34 lines
991 B
C#
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|
|||
|
|
namespace APT.Data.Migrations.Migrations
|
|||
|
|
{
|
|||
|
|
public partial class wyw2025112101 : Migration
|
|||
|
|
{
|
|||
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.AddColumn<int>(
|
|||
|
|
name: "EXAMINATION_RESULTS",
|
|||
|
|
table: "T_SE_TRAIN_RECORD_USER",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: true);
|
|||
|
|
|
|||
|
|
migrationBuilder.AddColumn<int>(
|
|||
|
|
name: "SCORE",
|
|||
|
|
table: "T_SE_TRAIN_RECORD_USER",
|
|||
|
|
type: "int",
|
|||
|
|
nullable: true);
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
|
{
|
|||
|
|
migrationBuilder.DropColumn(
|
|||
|
|
name: "EXAMINATION_RESULTS",
|
|||
|
|
table: "T_SE_TRAIN_RECORD_USER");
|
|||
|
|
|
|||
|
|
migrationBuilder.DropColumn(
|
|||
|
|
name: "SCORE",
|
|||
|
|
table: "T_SE_TRAIN_RECORD_USER");
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|