feature: Self-Service Clinical Testing Sessions
This commit is contained in:
+2024
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,29 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
|
||||
#nullable disable
|
||||
|
||||
namespace VigilCareClinicalAPI.Migrations
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public partial class AddSimulationSessionId : Migration
|
||||
{
|
||||
/// <inheritdoc />
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<string>(
|
||||
name: "session_id",
|
||||
table: "simulation_runs",
|
||||
type: "character varying(100)",
|
||||
maxLength: 100,
|
||||
nullable: true);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "session_id",
|
||||
table: "simulation_runs");
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1587,6 +1587,11 @@ namespace VigilCareClinicalAPI.Migrations
|
||||
.HasColumnType("character varying(200)")
|
||||
.HasColumnName("scenario_name");
|
||||
|
||||
b.Property<string>("SessionId")
|
||||
.HasMaxLength(100)
|
||||
.HasColumnType("character varying(100)")
|
||||
.HasColumnName("session_id");
|
||||
|
||||
b.Property<double>("Speed")
|
||||
.HasColumnType("double precision")
|
||||
.HasColumnName("speed");
|
||||
|
||||
Reference in New Issue
Block a user