601 lines
30 KiB
C#
601 lines
30 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace DocuMed.Repository.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class init : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.EnsureSchema(
|
|
name: "public");
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Cities",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
RemovedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedBy = table.Column<string>(type: "text", nullable: false),
|
|
IsRemoved = table.Column<bool>(type: "boolean", nullable: false),
|
|
RemovedBy = table.Column<string>(type: "text", nullable: false),
|
|
ModifiedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
ModifiedBy = table.Column<string>(type: "text", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Cities", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Roles",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Description = table.Column<string>(type: "text", nullable: false),
|
|
EnglishName = table.Column<string>(type: "text", nullable: false),
|
|
PersianName = table.Column<string>(type: "text", nullable: false),
|
|
Name = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
NormalizedName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
ConcurrencyStamp = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Roles", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Universities",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Address = table.Column<string>(type: "text", nullable: false),
|
|
CityId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
RemovedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedBy = table.Column<string>(type: "text", nullable: false),
|
|
IsRemoved = table.Column<bool>(type: "boolean", nullable: false),
|
|
RemovedBy = table.Column<string>(type: "text", nullable: false),
|
|
ModifiedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
ModifiedBy = table.Column<string>(type: "text", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Universities", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Universities_Cities_CityId",
|
|
column: x => x.CityId,
|
|
principalSchema: "public",
|
|
principalTable: "Cities",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "RoleClaims",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
RoleId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
ClaimType = table.Column<string>(type: "text", nullable: true),
|
|
ClaimValue = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_RoleClaims", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_RoleClaims_Roles_RoleId",
|
|
column: x => x.RoleId,
|
|
principalSchema: "public",
|
|
principalTable: "Roles",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Sections",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Detail = table.Column<string>(type: "text", nullable: false),
|
|
UniversityId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
RemovedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedBy = table.Column<string>(type: "text", nullable: false),
|
|
IsRemoved = table.Column<bool>(type: "boolean", nullable: false),
|
|
RemovedBy = table.Column<string>(type: "text", nullable: false),
|
|
ModifiedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
ModifiedBy = table.Column<string>(type: "text", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Sections", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Sections_Universities_UniversityId",
|
|
column: x => x.UniversityId,
|
|
principalSchema: "public",
|
|
principalTable: "Universities",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Users",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
FirstName = table.Column<string>(type: "text", nullable: false),
|
|
LastName = table.Column<string>(type: "text", nullable: false),
|
|
NationalId = table.Column<string>(type: "text", nullable: false),
|
|
StudentId = table.Column<string>(type: "text", nullable: false),
|
|
BirthDate = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
Gender = table.Column<int>(type: "integer", nullable: false),
|
|
SignUpStatus = table.Column<int>(type: "integer", nullable: false),
|
|
UniversityId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
SectionId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
UserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
NormalizedUserName = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
Email = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
NormalizedEmail = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
EmailConfirmed = table.Column<bool>(type: "boolean", nullable: false),
|
|
PasswordHash = table.Column<string>(type: "text", nullable: true),
|
|
SecurityStamp = table.Column<string>(type: "text", nullable: true),
|
|
ConcurrencyStamp = table.Column<string>(type: "text", nullable: true),
|
|
PhoneNumber = table.Column<string>(type: "text", nullable: true),
|
|
PhoneNumberConfirmed = table.Column<bool>(type: "boolean", nullable: false),
|
|
TwoFactorEnabled = table.Column<bool>(type: "boolean", nullable: false),
|
|
LockoutEnd = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true),
|
|
LockoutEnabled = table.Column<bool>(type: "boolean", nullable: false),
|
|
AccessFailedCount = table.Column<int>(type: "integer", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Users", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Users_Sections_SectionId",
|
|
column: x => x.SectionId,
|
|
principalSchema: "public",
|
|
principalTable: "Sections",
|
|
principalColumn: "Id");
|
|
table.ForeignKey(
|
|
name: "FK_Users_Universities_UniversityId",
|
|
column: x => x.UniversityId,
|
|
principalSchema: "public",
|
|
principalTable: "Universities",
|
|
principalColumn: "Id");
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Claims",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<int>(type: "integer", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
ClaimType = table.Column<string>(type: "text", nullable: true),
|
|
ClaimValue = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Claims", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_Claims_Users_UserId",
|
|
column: x => x.UserId,
|
|
principalSchema: "public",
|
|
principalTable: "Users",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Logins",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
LoginProvider = table.Column<string>(type: "text", nullable: false),
|
|
ProviderKey = table.Column<string>(type: "text", nullable: false),
|
|
ProviderDisplayName = table.Column<string>(type: "text", nullable: true),
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Logins", x => new { x.LoginProvider, x.ProviderKey });
|
|
table.ForeignKey(
|
|
name: "FK_Logins_Users_UserId",
|
|
column: x => x.UserId,
|
|
principalSchema: "public",
|
|
principalTable: "Users",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "MedicalHistories",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
ChiefComplaint = table.Column<string>(type: "text", nullable: false),
|
|
SectionId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
FirstName = table.Column<string>(type: "text", nullable: false),
|
|
LastName = table.Column<string>(type: "text", nullable: false),
|
|
FatherName = table.Column<string>(type: "text", nullable: false),
|
|
NationalId = table.Column<string>(type: "text", nullable: false),
|
|
Age = table.Column<int>(type: "integer", nullable: false),
|
|
BirthDate = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
PresentIllnessDetail = table.Column<string>(type: "text", nullable: false),
|
|
PastDiseasesHistoryDetail = table.Column<string>(type: "text", nullable: false),
|
|
PastSurgeryHistoryDetail = table.Column<string>(type: "text", nullable: false),
|
|
FamilyHistoryDetail = table.Column<string>(type: "text", nullable: false),
|
|
AllergyDetail = table.Column<string>(type: "text", nullable: false),
|
|
DrugHistoryDetail = table.Column<string>(type: "text", nullable: false),
|
|
AddictionHistoryDetail = table.Column<string>(type: "text", nullable: false),
|
|
SystemReviewDetail = table.Column<string>(type: "text", nullable: false),
|
|
VitalSignDetail = table.Column<string>(type: "text", nullable: false),
|
|
SystolicBloodPressure = table.Column<int>(type: "integer", nullable: false),
|
|
DiastolicBloodPressure = table.Column<int>(type: "integer", nullable: false),
|
|
PulseRate = table.Column<int>(type: "integer", nullable: false),
|
|
SPO2 = table.Column<int>(type: "integer", nullable: false),
|
|
Temperature = table.Column<int>(type: "integer", nullable: false),
|
|
MedicalHistoryTemplateId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
ApplicationUserId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
RemovedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedBy = table.Column<string>(type: "text", nullable: false),
|
|
IsRemoved = table.Column<bool>(type: "boolean", nullable: false),
|
|
RemovedBy = table.Column<string>(type: "text", nullable: false),
|
|
ModifiedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
ModifiedBy = table.Column<string>(type: "text", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_MedicalHistories", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_MedicalHistories_Sections_SectionId",
|
|
column: x => x.SectionId,
|
|
principalSchema: "public",
|
|
principalTable: "Sections",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
name: "FK_MedicalHistories_Users_ApplicationUserId",
|
|
column: x => x.ApplicationUserId,
|
|
principalSchema: "public",
|
|
principalTable: "Users",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "MedicalHistoryTemplates",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
ChiefComplaint = table.Column<string>(type: "text", nullable: false),
|
|
SectionId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
ApplicationUserId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
RemovedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedBy = table.Column<string>(type: "text", nullable: false),
|
|
IsRemoved = table.Column<bool>(type: "boolean", nullable: false),
|
|
RemovedBy = table.Column<string>(type: "text", nullable: false),
|
|
ModifiedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
ModifiedBy = table.Column<string>(type: "text", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_MedicalHistoryTemplates", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_MedicalHistoryTemplates_Sections_SectionId",
|
|
column: x => x.SectionId,
|
|
principalSchema: "public",
|
|
principalTable: "Sections",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
name: "FK_MedicalHistoryTemplates_Users_ApplicationUserId",
|
|
column: x => x.ApplicationUserId,
|
|
principalSchema: "public",
|
|
principalTable: "Users",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "Tokens",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
LoginProvider = table.Column<string>(type: "text", nullable: false),
|
|
Name = table.Column<string>(type: "text", nullable: false),
|
|
Value = table.Column<string>(type: "text", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_Tokens", x => new { x.UserId, x.LoginProvider, x.Name });
|
|
table.ForeignKey(
|
|
name: "FK_Tokens_Users_UserId",
|
|
column: x => x.UserId,
|
|
principalSchema: "public",
|
|
principalTable: "Users",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "UserRoles",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
UserId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
RoleId = table.Column<Guid>(type: "uuid", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_UserRoles", x => new { x.UserId, x.RoleId });
|
|
table.ForeignKey(
|
|
name: "FK_UserRoles_Roles_RoleId",
|
|
column: x => x.RoleId,
|
|
principalSchema: "public",
|
|
principalTable: "Roles",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
table.ForeignKey(
|
|
name: "FK_UserRoles_Users_UserId",
|
|
column: x => x.UserId,
|
|
principalSchema: "public",
|
|
principalTable: "Users",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "MedicalHistoryAnswers",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Answer = table.Column<string>(type: "text", nullable: false),
|
|
Question = table.Column<string>(type: "text", nullable: false),
|
|
Part = table.Column<int>(type: "integer", nullable: false),
|
|
QuestionType = table.Column<int>(type: "integer", nullable: false),
|
|
MedicalHistoryId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
RemovedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedBy = table.Column<string>(type: "text", nullable: false),
|
|
IsRemoved = table.Column<bool>(type: "boolean", nullable: false),
|
|
RemovedBy = table.Column<string>(type: "text", nullable: false),
|
|
ModifiedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
ModifiedBy = table.Column<string>(type: "text", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_MedicalHistoryAnswers", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_MedicalHistoryAnswers_MedicalHistories_MedicalHistoryId",
|
|
column: x => x.MedicalHistoryId,
|
|
principalSchema: "public",
|
|
principalTable: "MedicalHistories",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "MedicalHistoryQuestions",
|
|
schema: "public",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Question = table.Column<string>(type: "text", nullable: false),
|
|
Part = table.Column<int>(type: "integer", nullable: false),
|
|
QuestionType = table.Column<int>(type: "integer", nullable: false),
|
|
BodySystem = table.Column<int>(type: "integer", nullable: false),
|
|
IsSign = table.Column<bool>(type: "boolean", nullable: false),
|
|
IsSymptom = table.Column<bool>(type: "boolean", nullable: false),
|
|
MedicalHistoryTemplateId = table.Column<Guid>(type: "uuid", nullable: false),
|
|
RemovedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
CreatedBy = table.Column<string>(type: "text", nullable: false),
|
|
IsRemoved = table.Column<bool>(type: "boolean", nullable: false),
|
|
RemovedBy = table.Column<string>(type: "text", nullable: false),
|
|
ModifiedAt = table.Column<DateTime>(type: "timestamp without time zone", nullable: false),
|
|
ModifiedBy = table.Column<string>(type: "text", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_MedicalHistoryQuestions", x => x.Id);
|
|
table.ForeignKey(
|
|
name: "FK_MedicalHistoryQuestions_MedicalHistoryTemplates_MedicalHist~",
|
|
column: x => x.MedicalHistoryTemplateId,
|
|
principalSchema: "public",
|
|
principalTable: "MedicalHistoryTemplates",
|
|
principalColumn: "Id",
|
|
onDelete: ReferentialAction.Restrict);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Claims_UserId",
|
|
schema: "public",
|
|
table: "Claims",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Logins_UserId",
|
|
schema: "public",
|
|
table: "Logins",
|
|
column: "UserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_MedicalHistories_ApplicationUserId",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
column: "ApplicationUserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_MedicalHistories_SectionId",
|
|
schema: "public",
|
|
table: "MedicalHistories",
|
|
column: "SectionId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_MedicalHistoryAnswers_MedicalHistoryId",
|
|
schema: "public",
|
|
table: "MedicalHistoryAnswers",
|
|
column: "MedicalHistoryId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_MedicalHistoryQuestions_MedicalHistoryTemplateId",
|
|
schema: "public",
|
|
table: "MedicalHistoryQuestions",
|
|
column: "MedicalHistoryTemplateId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_MedicalHistoryTemplates_ApplicationUserId",
|
|
schema: "public",
|
|
table: "MedicalHistoryTemplates",
|
|
column: "ApplicationUserId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_MedicalHistoryTemplates_SectionId",
|
|
schema: "public",
|
|
table: "MedicalHistoryTemplates",
|
|
column: "SectionId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_RoleClaims_RoleId",
|
|
schema: "public",
|
|
table: "RoleClaims",
|
|
column: "RoleId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "RoleNameIndex",
|
|
schema: "public",
|
|
table: "Roles",
|
|
column: "NormalizedName",
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Sections_UniversityId",
|
|
schema: "public",
|
|
table: "Sections",
|
|
column: "UniversityId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Universities_CityId",
|
|
schema: "public",
|
|
table: "Universities",
|
|
column: "CityId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_UserRoles_RoleId",
|
|
schema: "public",
|
|
table: "UserRoles",
|
|
column: "RoleId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "EmailIndex",
|
|
schema: "public",
|
|
table: "Users",
|
|
column: "NormalizedEmail");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Users_SectionId",
|
|
schema: "public",
|
|
table: "Users",
|
|
column: "SectionId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_Users_UniversityId",
|
|
schema: "public",
|
|
table: "Users",
|
|
column: "UniversityId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "UserNameIndex",
|
|
schema: "public",
|
|
table: "Users",
|
|
column: "NormalizedUserName",
|
|
unique: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "Claims",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Logins",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "MedicalHistoryAnswers",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "MedicalHistoryQuestions",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "RoleClaims",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Tokens",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "UserRoles",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "MedicalHistories",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "MedicalHistoryTemplates",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Roles",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Users",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Sections",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Universities",
|
|
schema: "public");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "Cities",
|
|
schema: "public");
|
|
}
|
|
}
|
|
}
|