功能修改

This commit is contained in:
he
2026-04-23 14:56:25 +08:00
parent b29ed4d6a2
commit b5e6a81a52
5 changed files with 22159 additions and 3 deletions
File diff suppressed because it is too large Load Diff
@@ -0,0 +1,30 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
/// <inheritdoc />
public partial class UserFeedBack2 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "Reason",
table: "UserFeedBack",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Reason",
table: "UserFeedBack");
}
}
}
@@ -15684,6 +15684,11 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
b.Property<int>("QuestionType")
.HasColumnType("int");
b.Property<string>("Reason")
.IsRequired()
.HasMaxLength(400)
.HasColumnType("nvarchar(400)");
b.Property<string>("ScreenshotListStr")
.IsRequired()
.HasColumnType("nvarchar(max)");