45 lines
1.3 KiB
C#
45 lines
1.3 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class tableDefaultValue : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "DefaultValue",
|
|
table: "ReadingTableQuestionTrial",
|
|
type: "nvarchar(400)",
|
|
maxLength: 400,
|
|
nullable: false,
|
|
defaultValue: "",
|
|
comment: "默认值");
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "DefaultValue",
|
|
table: "ReadingTableQuestionSystem",
|
|
type: "nvarchar(400)",
|
|
maxLength: 400,
|
|
nullable: false,
|
|
defaultValue: "",
|
|
comment: "默认值");
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "DefaultValue",
|
|
table: "ReadingTableQuestionTrial");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "DefaultValue",
|
|
table: "ReadingTableQuestionSystem");
|
|
}
|
|
}
|
|
}
|