Browse Source

大文本结果

master
wxd 1 year ago
parent
commit
fefec1c7a4
  1. 15729
      src/Shentun.Peis.EntityFrameworkCore/Migrations/20240923032926_update_bigtext_result_description_length.Designer.cs
  2. 41
      src/Shentun.Peis.EntityFrameworkCore/Migrations/20240923032926_update_bigtext_result_description_length.cs
  3. 15729
      src/Shentun.Peis.EntityFrameworkCore/Migrations/20240923071000_update_register_check_item_result_length.Designer.cs
  4. 41
      src/Shentun.Peis.EntityFrameworkCore/Migrations/20240923071000_update_register_check_item_result_length.cs
  5. 8
      src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs

15729
src/Shentun.Peis.EntityFrameworkCore/Migrations/20240923032926_update_bigtext_result_description_length.Designer.cs
File diff suppressed because it is too large
View File

41
src/Shentun.Peis.EntityFrameworkCore/Migrations/20240923032926_update_bigtext_result_description_length.cs

@ -0,0 +1,41 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Shentun.Peis.Migrations
{
public partial class update_bigtext_result_description_length : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "description",
table: "bigtext_result_description",
type: "character varying(2000)",
maxLength: 2000,
nullable: true,
comment: "描述",
oldClrType: typeof(string),
oldType: "character varying(200)",
oldMaxLength: 200,
oldNullable: true,
oldComment: "描述");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "description",
table: "bigtext_result_description",
type: "character varying(200)",
maxLength: 200,
nullable: true,
comment: "描述",
oldClrType: typeof(string),
oldType: "character varying(2000)",
oldMaxLength: 2000,
oldNullable: true,
oldComment: "描述");
}
}
}

15729
src/Shentun.Peis.EntityFrameworkCore/Migrations/20240923071000_update_register_check_item_result_length.Designer.cs
File diff suppressed because it is too large
View File

41
src/Shentun.Peis.EntityFrameworkCore/Migrations/20240923071000_update_register_check_item_result_length.cs

@ -0,0 +1,41 @@
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace Shentun.Peis.Migrations
{
public partial class update_register_check_item_result_length : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "result",
table: "register_check_item",
type: "character varying(2000)",
maxLength: 2000,
nullable: true,
comment: "结果",
oldClrType: typeof(string),
oldType: "character varying(1000)",
oldMaxLength: 1000,
oldNullable: true,
oldComment: "结果");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "result",
table: "register_check_item",
type: "character varying(1000)",
maxLength: 1000,
nullable: true,
comment: "结果",
oldClrType: typeof(string),
oldType: "character varying(2000)",
oldMaxLength: 2000,
oldNullable: true,
oldComment: "结果");
}
}
}

8
src/Shentun.Peis.EntityFrameworkCore/Migrations/PeisDbContextModelSnapshot.cs

@ -911,8 +911,8 @@ namespace Shentun.Peis.Migrations
.HasColumnName("creator_id");
b.Property<string>("Description")
.HasMaxLength(200)
.HasColumnType("character varying(200)")
.HasMaxLength(2000)
.HasColumnType("character varying(2000)")
.HasColumnName("description")
.HasComment("描述");
@ -9059,8 +9059,8 @@ namespace Shentun.Peis.Migrations
.HasComment("参考范围");
b.Property<string>("Result")
.HasMaxLength(1000)
.HasColumnType("character varying(1000)")
.HasMaxLength(2000)
.HasColumnType("character varying(2000)")
.HasColumnName("result")
.HasComment("结果");

Loading…
Cancel
Save