50 lines
1.6 KiB
C#
50 lines
1.6 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace tb320eva.Migrations
|
|
{
|
|
public partial class UpdateFieldLength : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "behavior",
|
|
table: "eva_evaluation_behavior",
|
|
maxLength: 16000,
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldMaxLength: 1000,
|
|
oldNullable: true);
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "achievement",
|
|
table: "eva_evaluation_achievement",
|
|
maxLength: 16000,
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldMaxLength: 8000,
|
|
oldNullable: true);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "behavior",
|
|
table: "eva_evaluation_behavior",
|
|
maxLength: 1000,
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldMaxLength: 16000,
|
|
oldNullable: true);
|
|
|
|
migrationBuilder.AlterColumn<string>(
|
|
name: "achievement",
|
|
table: "eva_evaluation_achievement",
|
|
maxLength: 8000,
|
|
nullable: true,
|
|
oldClrType: typeof(string),
|
|
oldMaxLength: 16000,
|
|
oldNullable: true);
|
|
}
|
|
}
|
|
}
|