30 lines
832 B
C#
30 lines
832 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class PCWGInterimAnswer : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "PCWGInterimAnswer",
|
|
table: "ReadingTaskQuestionAnswer",
|
|
type: "nvarchar(400)",
|
|
maxLength: 400,
|
|
nullable: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "PCWGInterimAnswer",
|
|
table: "ReadingTaskQuestionAnswer");
|
|
}
|
|
}
|
|
}
|