DepartmentProject/DepartmentPortal/Common/DatabaseCore/Migrations/DatabaseContextModelSnapshot.cs

1449 lines
51 KiB
C#
Raw Normal View History

// <auto-generated />
using System;
2022-03-18 22:55:48 +04:00
using CoreDatabase;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
2022-03-18 22:55:48 +04:00
namespace CoreDatabase.Migrations
{
[DbContext(typeof(DatabaseContext))]
partial class DatabaseContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("Relational:MaxIdentifierLength", 128)
.HasAnnotation("ProductVersion", "5.0.5")
.HasAnnotation("SqlServer:ValueGenerationStrategy", SqlServerValueGenerationStrategy.IdentityColumn);
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.AcademicPlan", b =>
2021-04-06 22:07:11 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<Guid?>("EducationDirectionId")
2021-04-06 22:07:11 +04:00
.HasColumnType("uniqueidentifier");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<int>("YearEntrance")
.HasColumnType("int");
b.Property<int>("YearFinish")
.HasColumnType("int");
b.HasKey("Id");
b.HasIndex("EducationDirectionId", "YearEntrance")
.IsUnique()
.HasFilter("[EducationDirectionId] IS NOT NULL");
2021-04-06 22:07:11 +04:00
b.ToTable("AcademicPlans");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.AcademicPlanRecord", b =>
2021-04-06 22:07:11 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<Guid>("AcademicPlanId")
.HasColumnType("uniqueidentifier");
b.Property<Guid?>("AcademicPlanRecordParentId")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<Guid>("DisciplineId")
.HasColumnType("uniqueidentifier");
b.Property<bool>("InDepartment")
.HasColumnType("bit");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<bool>("IsFacultative")
.HasColumnType("bit");
b.Property<bool>("IsParent")
.HasColumnType("bit");
b.Property<int>("Semester")
.HasColumnType("int");
b.Property<int>("Zet")
.HasColumnType("int");
b.HasKey("Id");
b.HasIndex("DisciplineId");
b.HasIndex("AcademicPlanId", "DisciplineId", "Semester")
.IsUnique();
b.ToTable("AcademicPlanRecords");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.AcademicPlanRecordTimeNormHour", b =>
2021-04-06 22:07:11 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<Guid>("AcademicPlanRecordId")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<decimal>("PlanHours")
.HasColumnType("decimal(18,2)");
b.Property<Guid>("TimeNormId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("TimeNormId");
b.HasIndex("AcademicPlanRecordId", "TimeNormId")
.IsUnique();
b.ToTable("AcademicPlanRecordTimeNormHours");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Classroom", b =>
2021-04-03 13:41:19 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<int>("Capacity")
.HasColumnType("int");
b.Property<int>("ClassroomType")
.HasColumnType("int");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<Guid>("EmployeeId")
.HasColumnType("uniqueidentifier");
b.Property<bool>("HaveProjector")
.HasColumnType("bit");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("Number")
.IsRequired()
2021-04-03 13:41:19 +04:00
.HasColumnType("nvarchar(450)");
b.Property<byte[]>("Photo")
.HasColumnType("varbinary(max)");
b.Property<string>("SecurityCode")
.HasColumnType("nvarchar(max)");
b.Property<decimal>("Square")
.HasColumnType("decimal(18,2)");
b.Property<string>("Title")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.HasIndex("EmployeeId");
b.HasIndex("Number")
.IsUnique();
2021-04-03 13:41:19 +04:00
b.ToTable("Classrooms");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Discipline", b =>
2021-04-03 19:03:56 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
2021-04-03 19:03:56 +04:00
b.Property<Guid>("DisciplineBlockId")
.HasColumnType("uniqueidentifier");
b.Property<string>("DisciplineBlueAsteriskName")
.HasColumnType("nvarchar(max)");
b.Property<string>("DisciplineName")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<string>("DisciplineShortName")
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.HasKey("Id");
b.HasIndex("DisciplineBlockId");
b.HasIndex("DisciplineName")
.IsUnique();
b.ToTable("Disciplines");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.DisciplineBlock", b =>
2021-04-03 19:03:56 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("DisciplineBlockBlueAsteriskName")
.HasColumnType("nvarchar(max)");
b.Property<int>("DisciplineBlockOrder")
.HasColumnType("int");
b.Property<bool>("DisciplineBlockUseForGrouping")
.HasColumnType("bit");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("Title")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.HasKey("Id");
b.HasIndex("Title")
.IsUnique();
b.ToTable("DisciplineBlocks");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.EducationDirection", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<string>("Cipher")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<Guid>("LecturerId")
.HasColumnType("uniqueidentifier");
b.Property<string>("Profile")
.HasColumnType("nvarchar(450)");
b.Property<int>("Qualification")
.HasColumnType("int");
b.Property<string>("ShortName")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("Title")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.HasKey("Id");
b.HasIndex("LecturerId");
b.HasIndex("Title", "Profile")
.IsUnique()
.HasFilter("[Profile] IS NOT NULL");
b.ToTable("EducationDirections");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Employee", b =>
2021-04-03 09:45:22 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<string>("Address")
.HasColumnType("nvarchar(max)");
b.Property<DateTime>("DateBirth")
.HasColumnType("datetime2");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<string>("Email")
.HasColumnType("nvarchar(max)");
b.Property<string>("FirstName")
.HasColumnType("nvarchar(450)");
b.Property<string>("GroupElectricalSafety")
.HasColumnType("nvarchar(max)");
b.Property<string>("HomeNumber")
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("LastName")
.HasColumnType("nvarchar(450)");
b.Property<string>("MobileNumber")
.HasColumnType("nvarchar(max)");
b.Property<string>("Patronymic")
.HasColumnType("nvarchar(450)");
b.Property<byte[]>("Photo")
.HasColumnType("varbinary(max)");
b.Property<Guid>("UserId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("UserId");
2021-04-03 09:45:22 +04:00
b.HasIndex("FirstName", "LastName", "Patronymic")
.IsUnique()
.HasFilter("[FirstName] IS NOT NULL AND [LastName] IS NOT NULL AND [Patronymic] IS NOT NULL");
b.ToTable("Employees");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.EmployeePost", b =>
2021-04-03 09:45:22 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<Guid>("EmployeeId")
.HasColumnType("uniqueidentifier");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<bool>("IsExternalCombination")
.HasColumnType("bit");
b.Property<bool>("IsInternalCombination")
.HasColumnType("bit");
b.Property<Guid>("PostId")
.HasColumnType("uniqueidentifier");
2021-04-03 09:45:22 +04:00
b.Property<decimal>("Rate")
.HasColumnType("decimal(18,2)");
b.HasKey("Id");
b.HasIndex("EmployeeId");
b.HasIndex("PostId");
2021-04-03 09:45:22 +04:00
b.ToTable("EmployeePosts");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Lecturer", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<string>("Abbreviation")
.HasColumnType("nvarchar(max)");
b.Property<string>("Address")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<DateTime>("DateBirth")
.HasColumnType("datetime2");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<string>("Email")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("FirstName")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<string>("GroupElectricalSafety")
.HasColumnType("nvarchar(max)");
b.Property<string>("HomeNumber")
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("LastName")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<Guid?>("LecturerAcademicDegreeId")
.HasColumnType("uniqueidentifier");
b.Property<Guid?>("LecturerAcademicRankId")
.HasColumnType("uniqueidentifier");
b.Property<string>("MobileNumber")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<bool>("OnlyForPrivate")
.HasColumnType("bit");
b.Property<string>("Patronymic")
.HasColumnType("nvarchar(450)");
b.Property<byte[]>("Photo")
.HasColumnType("varbinary(max)");
b.Property<Guid>("UserId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("LecturerAcademicDegreeId");
b.HasIndex("LecturerAcademicRankId");
b.HasIndex("UserId");
b.HasIndex("FirstName", "LastName", "Patronymic")
.IsUnique()
.HasFilter("[Patronymic] IS NOT NULL");
b.ToTable("Lecturers");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.LecturerAcademicDegree", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("LecturerAcademicDegreeName")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<int>("Order")
.HasColumnType("int");
b.HasKey("Id");
b.HasIndex("LecturerAcademicDegreeName")
.IsUnique();
b.ToTable("LecturerAcademicDegrees");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.LecturerAcademicRank", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("LecturerAcademicRankName")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<int>("Order")
.HasColumnType("int");
b.HasKey("Id");
b.HasIndex("LecturerAcademicRankName")
.IsUnique();
b.ToTable("LecturerAcademicRanks");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.LecturerPost", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<bool>("IsExternalCombination")
.HasColumnType("bit");
b.Property<bool>("IsInternalCombination")
.HasColumnType("bit");
b.Property<Guid>("LecturerId")
.HasColumnType("uniqueidentifier");
b.Property<Guid>("PostId")
.HasColumnType("uniqueidentifier");
b.Property<decimal>("Rate")
.HasColumnType("decimal(18,2)");
b.HasKey("Id");
b.HasIndex("LecturerId");
b.HasIndex("PostId");
b.ToTable("LecturerPosts");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Order", b =>
2021-04-13 12:52:45 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<DateTime>("OrderDate")
.HasColumnType("datetime2");
b.Property<string>("OrderNumber")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<int>("OrderType")
.HasColumnType("int");
b.HasKey("Id");
b.HasIndex("OrderNumber")
.IsUnique();
b.ToTable("Orders");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.OrderStudentRecord", b =>
2021-04-13 12:52:45 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Info")
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<Guid>("OrderId")
.HasColumnType("uniqueidentifier");
b.Property<int>("OrderStudentMoveType")
.HasColumnType("int");
b.Property<Guid?>("StudentGroupFromId")
.HasColumnType("uniqueidentifier");
b.Property<Guid?>("StudentGroupToId")
.HasColumnType("uniqueidentifier");
b.Property<Guid>("StudentId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("OrderId");
b.HasIndex("StudentGroupFromId");
b.HasIndex("StudentGroupToId");
b.HasIndex("StudentId", "OrderId")
.IsUnique();
b.ToTable("OrderStudentRecords");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.OrderSyncHistory", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("SyncDate")
.HasColumnType("datetime2");
b.HasKey("Id");
b.ToTable("OrderSyncHistories");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.OrderSyncHistoryRecord", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<string>("Information")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<Guid>("OrderSyncHistoryId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("OrderSyncHistoryId");
b.ToTable("OrderSyncHistoryRecords");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Post", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<int?>("Hours")
.HasColumnType("int");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<int>("Order")
.HasColumnType("int");
b.Property<string>("PostName")
.HasColumnType("nvarchar(450)");
b.HasKey("Id");
b.HasIndex("PostName")
.IsUnique()
.HasFilter("[PostName] IS NOT NULL");
b.ToTable("Posts");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Student", b =>
2021-04-12 16:57:29 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<string>("Email")
.HasColumnType("nvarchar(max)");
b.Property<string>("FirstName")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("Iduniv")
.IsRequired()
.HasColumnType("nvarchar(max)");
2021-04-12 16:57:29 +04:00
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<bool>("IsSteward")
.HasColumnType("bit");
b.Property<string>("LastName")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("NumberOfBook")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<string>("Patronymic")
.HasColumnType("nvarchar(max)");
b.Property<byte[]>("Photo")
.HasColumnType("varbinary(max)");
b.Property<Guid?>("StudentGroupId")
2021-04-12 16:57:29 +04:00
.HasColumnType("uniqueidentifier");
b.Property<int>("StudentState")
.HasColumnType("int");
b.Property<Guid>("UserId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("NumberOfBook")
.IsUnique();
b.HasIndex("StudentGroupId");
b.HasIndex("UserId");
b.ToTable("Students");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.StudentGroup", b =>
2021-04-12 10:01:42 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
2021-04-27 18:04:01 +04:00
b.Property<int>("AcademicCourse")
.HasColumnType("int");
2021-04-12 10:01:42 +04:00
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
2021-04-27 18:04:01 +04:00
b.Property<Guid>("EducationDirectionId")
.HasColumnType("uniqueidentifier");
2021-04-12 10:01:42 +04:00
b.Property<int>("GroupNumber")
.HasColumnType("int");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<Guid?>("LecturerId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("LecturerId");
2021-04-27 18:04:01 +04:00
b.HasIndex("EducationDirectionId", "AcademicCourse", "GroupNumber")
2021-04-12 10:01:42 +04:00
.IsUnique();
b.ToTable("StudentGroups");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.TimeNorm", b =>
2021-04-06 22:07:11 +04:00
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<Guid>("DisciplineBlockId")
.HasColumnType("uniqueidentifier");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("KindOfLoadAttributeName")
.HasColumnType("nvarchar(max)");
b.Property<string>("KindOfLoadBlueAsteriskAttributeName")
.HasColumnType("nvarchar(max)");
b.Property<string>("KindOfLoadBlueAsteriskName")
.HasColumnType("nvarchar(max)");
b.Property<string>("KindOfLoadBlueAsteriskPracticName")
.HasColumnType("nvarchar(max)");
b.Property<string>("KindOfLoadName")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<int?>("TimeNormEducationDirectionQualification")
.HasColumnType("int");
b.Property<string>("TimeNormName")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<int>("TimeNormOrder")
.HasColumnType("int");
b.Property<string>("TimeNormShortName")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<bool>("UseInLearningProgress")
.HasColumnType("bit");
b.Property<bool>("UseInSite")
.HasColumnType("bit");
b.HasKey("Id");
b.HasIndex("DisciplineBlockId");
b.HasIndex("TimeNormName", "TimeNormShortName")
.IsUnique();
b.ToTable("TimeNorms");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.Access", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<int>("AccessOperation")
.HasColumnType("int");
b.Property<int>("AccessType")
.HasColumnType("int");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<Guid>("RoleId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("RoleId");
b.ToTable("Accesses");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.EnviromentSetting", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<string>("Description")
.HasColumnType("nvarchar(max)");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("Key")
.IsRequired()
.HasColumnType("nvarchar(450)");
b.Property<string>("Value")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.HasIndex("Key")
.IsUnique();
b.ToTable("EnviromentSettings");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.Role", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("RoleName")
2021-04-03 19:03:56 +04:00
.IsRequired()
2021-04-03 09:45:22 +04:00
.HasColumnType("nvarchar(450)");
b.Property<int>("RolePriority")
.HasColumnType("int");
b.HasKey("Id");
2021-04-03 09:45:22 +04:00
b.HasIndex("RoleName")
2021-04-03 19:03:56 +04:00
.IsUnique();
2021-04-03 09:45:22 +04:00
b.ToTable("Roles");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.User", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<byte[]>("Avatar")
.HasColumnType("varbinary(max)");
b.Property<int>("CountAttempt")
.HasColumnType("int");
b.Property<DateTime?>("DateBanned")
.HasColumnType("datetime2");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateLastVisit")
.HasColumnType("datetime2");
b.Property<bool>("IsBanned")
.HasColumnType("bit");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<string>("PasswordHash")
2021-04-03 19:03:56 +04:00
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property<string>("UserName")
2021-04-03 19:03:56 +04:00
.IsRequired()
2021-04-03 09:45:22 +04:00
.HasColumnType("nvarchar(450)");
b.HasKey("Id");
2021-04-03 13:41:19 +04:00
b.HasIndex("UserName");
2021-04-03 09:45:22 +04:00
b.ToTable("Users");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.UserRole", b =>
{
b.Property<Guid>("Id")
.HasColumnType("uniqueidentifier");
b.Property<DateTime>("DateCreate")
.HasColumnType("datetime2");
b.Property<DateTime?>("DateDelete")
.HasColumnType("datetime2");
b.Property<bool>("IsDeleted")
.HasColumnType("bit");
b.Property<Guid>("RoleId")
.HasColumnType("uniqueidentifier");
b.Property<Guid>("UserId")
.HasColumnType("uniqueidentifier");
b.HasKey("Id");
b.HasIndex("RoleId");
b.HasIndex("UserId");
b.ToTable("UserRoles");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.AcademicPlan", b =>
2021-04-06 22:07:11 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.EducationDirection", "EducationDirection")
2021-04-06 22:07:11 +04:00
.WithMany("AcademicPlans")
.HasForeignKey("EducationDirectionId");
2021-04-06 22:07:11 +04:00
b.Navigation("EducationDirection");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.AcademicPlanRecord", b =>
2021-04-06 22:07:11 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.AcademicPlan", "AcademicPlan")
2021-04-06 22:07:11 +04:00
.WithMany("AcademicPlanRecords")
.HasForeignKey("AcademicPlanId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Discipline", "Discipline")
2021-04-06 22:07:11 +04:00
.WithMany("AcademicPlanRecords")
.HasForeignKey("DisciplineId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("AcademicPlan");
b.Navigation("Discipline");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.AcademicPlanRecordTimeNormHour", b =>
2021-04-06 22:07:11 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.AcademicPlanRecord", "AcademicPlanRecord")
2021-04-06 22:07:11 +04:00
.WithMany("AcademicPlanRecordTimeNormHours")
.HasForeignKey("AcademicPlanRecordId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.TimeNorm", "TimeNorm")
2021-04-06 22:07:11 +04:00
.WithMany("AcademicPlanRecordTimeNormHours")
.HasForeignKey("TimeNormId")
.OnDelete(DeleteBehavior.NoAction)
.IsRequired();
b.Navigation("AcademicPlanRecord");
b.Navigation("TimeNorm");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Classroom", b =>
2021-04-03 13:41:19 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Employee", "Employee")
2021-04-03 13:41:19 +04:00
.WithMany("Classrooms")
.HasForeignKey("EmployeeId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Employee");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Discipline", b =>
2021-04-03 19:03:56 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.DisciplineBlock", "DisciplineBlock")
2021-04-03 19:03:56 +04:00
.WithMany("Disciplines")
.HasForeignKey("DisciplineBlockId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("DisciplineBlock");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.EducationDirection", b =>
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Lecturer", "Lecturer")
.WithMany("EducationDirections")
.HasForeignKey("LecturerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Lecturer");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Employee", b =>
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Security.User", "User")
.WithMany("Employees")
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("User");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.EmployeePost", b =>
2021-04-03 09:45:22 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Employee", "Employee")
.WithMany("EmployeePosts")
2021-04-03 09:45:22 +04:00
.HasForeignKey("EmployeeId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Post", "Post")
.WithMany("EmployeePosts")
.HasForeignKey("PostId")
2021-04-03 09:45:22 +04:00
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Employee");
b.Navigation("Post");
2021-04-03 09:45:22 +04:00
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Lecturer", b =>
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.LecturerAcademicDegree", "LecturerAcademicDegree")
.WithMany("Lecturers")
.HasForeignKey("LecturerAcademicDegreeId");
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.LecturerAcademicRank", "LecturerAcademicRank")
.WithMany("Lecturers")
.HasForeignKey("LecturerAcademicRankId");
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Security.User", "User")
.WithMany("Lecturers")
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("LecturerAcademicDegree");
b.Navigation("LecturerAcademicRank");
b.Navigation("User");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.LecturerPost", b =>
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Lecturer", "Lecturer")
.WithMany("LecturerPosts")
.HasForeignKey("LecturerId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Post", "Post")
.WithMany("LecturerPosts")
.HasForeignKey("PostId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Lecturer");
b.Navigation("Post");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.OrderStudentRecord", b =>
2021-04-13 12:52:45 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Order", "Order")
2021-04-13 12:52:45 +04:00
.WithMany("OrderStudentRecords")
.HasForeignKey("OrderId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.StudentGroup", "StudentGroupFrom")
2021-04-13 12:52:45 +04:00
.WithMany("OrderStudentRecordFroms")
.HasForeignKey("StudentGroupFromId")
.OnDelete(DeleteBehavior.SetNull);
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.StudentGroup", "StudentGroupTo")
2021-04-13 12:52:45 +04:00
.WithMany("OrderStudentRecordTos")
.HasForeignKey("StudentGroupToId")
.OnDelete(DeleteBehavior.NoAction);
2021-04-13 12:52:45 +04:00
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Student", "Student")
2021-04-13 12:52:45 +04:00
.WithMany("OrderStudentRecords")
.HasForeignKey("StudentId")
.OnDelete(DeleteBehavior.NoAction)
2021-04-13 12:52:45 +04:00
.IsRequired();
b.Navigation("Order");
b.Navigation("Student");
b.Navigation("StudentGroupFrom");
b.Navigation("StudentGroupTo");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.OrderSyncHistoryRecord", b =>
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.OrderSyncHistory", "OrderSyncHistory")
.WithMany("OrderSyncHistoryRecords")
.HasForeignKey("OrderSyncHistoryId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("OrderSyncHistory");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Student", b =>
2021-04-12 16:57:29 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.StudentGroup", "StudentGroup")
2021-04-12 16:57:29 +04:00
.WithMany("Students")
.HasForeignKey("StudentGroupId");
2021-04-12 16:57:29 +04:00
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Security.User", "User")
2021-04-12 16:57:29 +04:00
.WithMany("Students")
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("StudentGroup");
b.Navigation("User");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.StudentGroup", b =>
2021-04-12 10:01:42 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.EducationDirection", "EducationDirection")
2021-04-12 10:01:42 +04:00
.WithMany("StudentGroups")
2021-04-27 18:04:01 +04:00
.HasForeignKey("EducationDirectionId")
2021-04-12 10:01:42 +04:00
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.Lecturer", "Lecturer")
2021-04-12 10:01:42 +04:00
.WithMany("StudentGroups")
.HasForeignKey("LecturerId");
2021-04-27 18:04:01 +04:00
b.Navigation("EducationDirection");
2021-04-12 10:01:42 +04:00
b.Navigation("Lecturer");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.TimeNorm", b =>
2021-04-06 22:07:11 +04:00
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Department.DisciplineBlock", "DisciplineBlock")
2021-04-06 22:07:11 +04:00
.WithMany("TimeNorms")
.HasForeignKey("DisciplineBlockId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("DisciplineBlock");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.Access", b =>
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Security.Role", "Role")
.WithMany("Access")
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Role");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.UserRole", b =>
{
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Security.Role", "Role")
.WithMany("UserRoles")
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
2022-03-18 22:55:48 +04:00
b.HasOne("CoreDatabase.Models.Security.User", "User")
.WithMany("UserRoles")
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("Role");
b.Navigation("User");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.AcademicPlan", b =>
2021-04-06 22:07:11 +04:00
{
b.Navigation("AcademicPlanRecords");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.AcademicPlanRecord", b =>
2021-04-06 22:07:11 +04:00
{
b.Navigation("AcademicPlanRecordTimeNormHours");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Discipline", b =>
2021-04-06 22:07:11 +04:00
{
b.Navigation("AcademicPlanRecords");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.DisciplineBlock", b =>
2021-04-03 19:03:56 +04:00
{
b.Navigation("Disciplines");
2021-04-06 22:07:11 +04:00
b.Navigation("TimeNorms");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.EducationDirection", b =>
2021-04-06 22:07:11 +04:00
{
b.Navigation("AcademicPlans");
2021-04-27 18:04:01 +04:00
b.Navigation("StudentGroups");
2021-04-03 19:03:56 +04:00
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Employee", b =>
2021-04-03 09:45:22 +04:00
{
2021-04-03 13:41:19 +04:00
b.Navigation("Classrooms");
b.Navigation("EmployeePosts");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Lecturer", b =>
{
b.Navigation("EducationDirections");
b.Navigation("LecturerPosts");
2021-04-12 10:01:42 +04:00
b.Navigation("StudentGroups");
2021-04-03 09:45:22 +04:00
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.LecturerAcademicDegree", b =>
{
b.Navigation("Lecturers");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.LecturerAcademicRank", b =>
{
b.Navigation("Lecturers");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Order", b =>
2021-04-13 12:52:45 +04:00
{
b.Navigation("OrderStudentRecords");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.OrderSyncHistory", b =>
{
b.Navigation("OrderSyncHistoryRecords");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Post", b =>
{
b.Navigation("EmployeePosts");
b.Navigation("LecturerPosts");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.Student", b =>
2021-04-13 12:52:45 +04:00
{
b.Navigation("OrderStudentRecords");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.StudentGroup", b =>
2021-04-12 16:57:29 +04:00
{
2021-04-13 12:52:45 +04:00
b.Navigation("OrderStudentRecordFroms");
b.Navigation("OrderStudentRecordTos");
2021-04-12 16:57:29 +04:00
b.Navigation("Students");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Department.TimeNorm", b =>
2021-04-06 22:07:11 +04:00
{
b.Navigation("AcademicPlanRecordTimeNormHours");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.Role", b =>
{
b.Navigation("Access");
b.Navigation("UserRoles");
});
2022-03-18 22:55:48 +04:00
modelBuilder.Entity("CoreDatabase.Models.Security.User", b =>
{
b.Navigation("Employees");
b.Navigation("Lecturers");
2021-04-12 16:57:29 +04:00
b.Navigation("Students");
b.Navigation("UserRoles");
});
#pragma warning restore 612, 618
}
}
}