数据库修改
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
2bad8065a5
commit
f7a3e87ba8
|
@ -17007,6 +17007,36 @@
|
|||
标准类型
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.TrialExperienceCommand.OtherStages">
|
||||
<summary>
|
||||
其他分期
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.TrialExperienceCommand.OtherCriterion">
|
||||
<summary>
|
||||
其他标准
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.GcpAndOtherExperienceDTO.GCPTime">
|
||||
<summary>
|
||||
GCP证书的时间
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.GcpAndOtherExperienceDTO.GCPAgencies">
|
||||
<summary>
|
||||
GCP机构
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.GCPExperienceCommand.GCPTime">
|
||||
<summary>
|
||||
GCP证书的时间
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.GCPExperienceCommand.GCPAgencies">
|
||||
<summary>
|
||||
GCP机构
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:IRaCIS.Application.Contracts.UserBasicInfo.LastLoginIP">
|
||||
<summary>
|
||||
LastLoginIP
|
||||
|
|
17926
IRaCIS.Core.Infra.EFCore/Migrations/20241022072705_doctorinfo10221525.Designer.cs
generated
Normal file
17926
IRaCIS.Core.Infra.EFCore/Migrations/20241022072705_doctorinfo10221525.Designer.cs
generated
Normal file
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,65 @@
|
|||
using System;
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace IRaCIS.Core.Infra.EFCore.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class doctorinfo10221525 : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "OtherCriterion",
|
||||
table: "TrialExperience",
|
||||
type: "nvarchar(400)",
|
||||
maxLength: 400,
|
||||
nullable: false,
|
||||
defaultValue: "");
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "OtherStages",
|
||||
table: "TrialExperience",
|
||||
type: "nvarchar(400)",
|
||||
maxLength: 400,
|
||||
nullable: false,
|
||||
defaultValue: "");
|
||||
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "GCPAgencies",
|
||||
table: "Doctor",
|
||||
type: "nvarchar(400)",
|
||||
maxLength: 400,
|
||||
nullable: false,
|
||||
defaultValue: "");
|
||||
|
||||
migrationBuilder.AddColumn<DateTime>(
|
||||
name: "GCPTime",
|
||||
table: "Doctor",
|
||||
type: "datetime2",
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "OtherCriterion",
|
||||
table: "TrialExperience");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "OtherStages",
|
||||
table: "TrialExperience");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "GCPAgencies",
|
||||
table: "Doctor");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "GCPTime",
|
||||
table: "Doctor");
|
||||
}
|
||||
}
|
||||
}
|
|
@ -1394,9 +1394,17 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
b.Property<int>("GCP")
|
||||
.HasColumnType("int");
|
||||
|
||||
b.Property<string>("GCPAgencies")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
||||
b.Property<Guid>("GCPId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
b.Property<DateTime?>("GCPTime")
|
||||
.HasColumnType("datetime2");
|
||||
|
||||
b.Property<Guid?>("HospitalId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
|
@ -11213,6 +11221,16 @@ namespace IRaCIS.Core.Infra.EFCore.Migrations
|
|||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
||||
b.Property<string>("OtherCriterion")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
||||
b.Property<string>("OtherStages")
|
||||
.IsRequired()
|
||||
.HasMaxLength(400)
|
||||
.HasColumnType("nvarchar(400)");
|
||||
|
||||
b.Property<Guid?>("PhaseId")
|
||||
.HasColumnType("uniqueidentifier");
|
||||
|
||||
|
|
Loading…
Reference in New Issue