using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace IRaCIS.Core.Infra.EFCore.Migrations
{
///
public partial class DicomStudy0420 : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "RadionuclideHalfLife",
table: "SCPStudy",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "RadionuclideTotalDose",
table: "SCPStudy",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "RadiopharmaceuticalStartTime",
table: "SCPStudy",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "RadionuclideHalfLife",
table: "DicomStudy",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "RadionuclideTotalDose",
table: "DicomStudy",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "RadiopharmaceuticalStartTime",
table: "DicomStudy",
type: "nvarchar(400)",
maxLength: 400,
nullable: false,
defaultValue: "");
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "RadionuclideHalfLife",
table: "SCPStudy");
migrationBuilder.DropColumn(
name: "RadionuclideTotalDose",
table: "SCPStudy");
migrationBuilder.DropColumn(
name: "RadiopharmaceuticalStartTime",
table: "SCPStudy");
migrationBuilder.DropColumn(
name: "RadionuclideHalfLife",
table: "DicomStudy");
migrationBuilder.DropColumn(
name: "RadionuclideTotalDose",
table: "DicomStudy");
migrationBuilder.DropColumn(
name: "RadiopharmaceuticalStartTime",
table: "DicomStudy");
}
}
}