52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace VigilCareClinicalAPI.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddEncounterClinicalFields : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "admission_reason",
|
|
table: "encounters",
|
|
type: "character varying(500)",
|
|
maxLength: 500,
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "discharge_diagnosis",
|
|
table: "encounters",
|
|
type: "character varying(500)",
|
|
maxLength: 500,
|
|
nullable: true);
|
|
|
|
migrationBuilder.AddColumn<string>(
|
|
name: "room_bed",
|
|
table: "encounters",
|
|
type: "character varying(20)",
|
|
maxLength: 20,
|
|
nullable: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "admission_reason",
|
|
table: "encounters");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "discharge_diagnosis",
|
|
table: "encounters");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "room_bed",
|
|
table: "encounters");
|
|
}
|
|
}
|
|
}
|