irc-netcore-api/IRaCIS.Core.Infra.EFCore/Migrations/20260413064532_DefaultSegme...

30 lines
846 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class DefaultSegmentName : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "DefaultSegmentName",
table: "ReadingQuestionCriterionTrial",
type: "nvarchar(max)",
nullable: false,
defaultValue: "");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "DefaultSegmentName",
table: "ReadingQuestionCriterionTrial");
}
}
}