//
using System;
using MTWorkHR.Infrastructure.DBContext;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Metadata;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
#nullable disable
namespace MTWorkHR.Infrastructure.Migrations
{
[DbContext(typeof(HRDataContext))]
[Migration("20240328090119_altrUser")]
partial class altrUser
{
///
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "8.0.1")
.HasAnnotation("Relational:MaxIdentifierLength", 128);
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
modelBuilder.Entity("ApplicationRoleApplicationUser", b =>
{
b.Property("UserRolesId")
.HasColumnType("nvarchar(450)");
b.Property("UsersId")
.HasColumnType("nvarchar(450)");
b.HasKey("UserRolesId", "UsersId");
b.HasIndex("UsersId");
b.ToTable("ApplicationRoleApplicationUser");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.Attendance", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("AttendanceDate")
.HasColumnType("datetime2");
b.Property("CheckInTime")
.HasColumnType("datetime2");
b.Property("CheckOutTime")
.HasColumnType("datetime2");
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("DeleteUserId")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(8);
b.Property("IsDeleted")
.HasColumnType("bit")
.HasColumnOrder(7);
b.Property("LeaveReason")
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("LeaveType")
.HasColumnType("int");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.Property("UserId")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserName")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("Attendances");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.AttendanceLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("Channel")
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2");
b.Property("CreateUser")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorCode")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorDescription")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("InnerException")
.HasColumnType("nvarchar(max)");
b.Property("Input")
.HasColumnType("nvarchar(max)");
b.Property("Method")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("QueryString")
.HasColumnType("nvarchar(max)");
b.Property("ServerIP")
.HasColumnType("nvarchar(max)");
b.Property("ServiceResponseTimeInSeconds")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserIP")
.HasColumnType("nvarchar(max)");
b.Property("userAgent")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("AttendanceLogs");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.AuthLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("Channel")
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2");
b.Property("CreateUser")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorCode")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorDescription")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("InnerException")
.HasColumnType("nvarchar(max)");
b.Property("Input")
.HasColumnType("nvarchar(max)");
b.Property("Method")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("QueryString")
.HasColumnType("nvarchar(max)");
b.Property("ServerIP")
.HasColumnType("nvarchar(max)");
b.Property("ServiceResponseTimeInSeconds")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserIP")
.HasColumnType("nvarchar(max)");
b.Property("userAgent")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("AuthLogs");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.Base.AttachmentType", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("IsRequired")
.HasColumnType("bit");
b.Property("NameAr")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("NameEn")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.HasKey("Id");
b.ToTable("AttachmentTypes");
b.HasData(
new
{
Id = 1L,
IsRequired = false,
NameAr = "السيرة الذاتية",
NameEn = "CV"
},
new
{
Id = 2L,
IsRequired = false,
NameAr = "الهوية",
NameEn = "Identification"
});
});
modelBuilder.Entity("MTWorkHR.Core.Entities.Company", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("CRNumber")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("CompanyName")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("DeleteUserId")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(8);
b.Property("IsDeleted")
.HasColumnType("bit")
.HasColumnOrder(7);
b.Property("TaxNumber")
.HasColumnType("int");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.Property("UserId")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("Companies");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.FileLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("Channel")
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2");
b.Property("CreateUser")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorCode")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorDescription")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("InnerException")
.HasColumnType("nvarchar(max)");
b.Property("Input")
.HasColumnType("nvarchar(max)");
b.Property("Method")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("QueryString")
.HasColumnType("nvarchar(max)");
b.Property("ServerIP")
.HasColumnType("nvarchar(max)");
b.Property("ServiceResponseTimeInSeconds")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserIP")
.HasColumnType("nvarchar(max)");
b.Property("userAgent")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("FileLogs");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.LeaveType", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("DefaultDays")
.HasColumnType("int");
b.Property("NameAr")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("NameEn")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("LeaveTypes");
b.HasData(
new
{
Id = 1L,
DefaultDays = 21,
NameAr = "أجازة سنوية",
NameEn = "Annual Leave"
},
new
{
Id = 2L,
DefaultDays = 15,
NameAr = "أجازة مرضية",
NameEn = "Sick Leave"
},
new
{
Id = 3L,
DefaultDays = 20,
NameAr = "أجازة زواج",
NameEn = "Marriage Leave"
},
new
{
Id = 4L,
DefaultDays = 10,
NameAr = "أجازة وضع",
NameEn = "Paternity leave"
},
new
{
Id = 5L,
DefaultDays = 10,
NameAr = "أجازة طارئة",
NameEn = "Emergency leave"
});
});
modelBuilder.Entity("MTWorkHR.Core.Entities.Meeting", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("DeleteUserId")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(8);
b.Property("Description")
.HasMaxLength(500)
.HasColumnType("nvarchar(500)");
b.Property("EndDate")
.HasColumnType("datetime2");
b.Property("IsDeleted")
.HasColumnType("bit")
.HasColumnOrder(7);
b.Property("Location")
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("MeetingLink")
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("StartDate")
.HasColumnType("datetime2");
b.Property("Title")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.HasKey("Id");
b.ToTable("Meetings");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.MeetingLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("Channel")
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2");
b.Property("CreateUser")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorCode")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorDescription")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("InnerException")
.HasColumnType("nvarchar(max)");
b.Property("Input")
.HasColumnType("nvarchar(max)");
b.Property("Method")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("QueryString")
.HasColumnType("nvarchar(max)");
b.Property("ServerIP")
.HasColumnType("nvarchar(max)");
b.Property("ServiceResponseTimeInSeconds")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserIP")
.HasColumnType("nvarchar(max)");
b.Property("userAgent")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("MeetingLogs");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.MeetingUser", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("AssignedUserId")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("MeetingId")
.HasColumnType("bigint");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.HasKey("Id");
b.HasIndex("MeetingId");
b.ToTable("MeetingUser");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.OrderAllocation", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("EmployeeId")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("LeaveTypeId")
.HasColumnType("bigint");
b.Property("NumberOfDays")
.HasColumnType("int");
b.Property("OrderTypeId")
.HasColumnType("bigint");
b.Property("Period")
.HasColumnType("int");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.HasKey("Id");
b.HasIndex("LeaveTypeId");
b.HasIndex("OrderTypeId");
b.ToTable("OrderAllocations");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.OrderType", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("DefaultDays")
.HasColumnType("int");
b.Property("NameAr")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("NameEn")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("OrderTypes");
b.HasData(
new
{
Id = 1L,
DefaultDays = 2,
NameAr = "إذن",
NameEn = "Leave"
},
new
{
Id = 2L,
DefaultDays = 15,
NameAr = "طبية",
NameEn = "Medical"
},
new
{
Id = 3L,
DefaultDays = 20,
NameAr = "وقت إضافي",
NameEn = "Overtime"
},
new
{
Id = 4L,
DefaultDays = 0,
NameAr = "رحلة عمل",
NameEn = "Business trip"
},
new
{
Id = 5L,
DefaultDays = 0,
NameAr = "دورة تدريبية",
NameEn = "Course"
});
});
modelBuilder.Entity("MTWorkHR.Core.Entities.Permission", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("CategoryName")
.IsRequired()
.HasMaxLength(150)
.HasColumnType("nvarchar(150)");
b.Property("Desc")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("Name")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("Show")
.HasColumnType("bit");
b.HasKey("Id");
b.ToTable("Permissions");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.Project", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("DeleteUserId")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(8);
b.Property("IsDeleted")
.HasColumnType("bit")
.HasColumnOrder(7);
b.Property("NameAr")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("NameEn")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.HasKey("Id");
b.ToTable("Projects");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.RoleLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("Channel")
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2");
b.Property("CreateUser")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorCode")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorDescription")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("InnerException")
.HasColumnType("nvarchar(max)");
b.Property("Input")
.HasColumnType("nvarchar(max)");
b.Property("Method")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("QueryString")
.HasColumnType("nvarchar(max)");
b.Property("ServerIP")
.HasColumnType("nvarchar(max)");
b.Property("ServiceResponseTimeInSeconds")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserIP")
.HasColumnType("nvarchar(max)");
b.Property("userAgent")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("RoleLogs");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.SettingLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("Channel")
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2");
b.Property("CreateUser")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorCode")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorDescription")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("InnerException")
.HasColumnType("nvarchar(max)");
b.Property("Input")
.HasColumnType("nvarchar(max)");
b.Property("Method")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("QueryString")
.HasColumnType("nvarchar(max)");
b.Property("ServerIP")
.HasColumnType("nvarchar(max)");
b.Property("ServiceResponseTimeInSeconds")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserIP")
.HasColumnType("nvarchar(max)");
b.Property("userAgent")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("SettingLogs");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.Team", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("DeleteUserId")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(8);
b.Property("IsDeleted")
.HasColumnType("bit")
.HasColumnOrder(7);
b.Property("NameAr")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("NameEn")
.IsRequired()
.HasMaxLength(250)
.HasColumnType("nvarchar(250)");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.HasKey("Id");
b.ToTable("Teams");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.TeamLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("Channel")
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2");
b.Property("CreateUser")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorCode")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorDescription")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("InnerException")
.HasColumnType("nvarchar(max)");
b.Property("Input")
.HasColumnType("nvarchar(max)");
b.Property("Method")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("QueryString")
.HasColumnType("nvarchar(max)");
b.Property("ServerIP")
.HasColumnType("nvarchar(max)");
b.Property("ServiceResponseTimeInSeconds")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserIP")
.HasColumnType("nvarchar(max)");
b.Property("userAgent")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("TeamLogs");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.TeamUser", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("AssignedUserId")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("IsAdmin")
.HasColumnType("bit");
b.Property("TeamId")
.HasColumnType("bigint");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.HasKey("Id");
b.HasIndex("TeamId");
b.ToTable("TeamUser");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.User.OrderRequest", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("CityId")
.HasColumnType("int");
b.Property("CountryId")
.HasColumnType("int");
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property("DeleteUserId")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(8);
b.Property("EndDate")
.HasColumnType("datetime2");
b.Property("IsDeleted")
.HasColumnType("bit")
.HasColumnOrder(7);
b.Property("LeaveTypeId")
.HasColumnType("bigint");
b.Property("OrderStatus")
.HasColumnType("int");
b.Property("OrderTypeId")
.HasColumnType("bigint");
b.Property("RequestComments")
.HasColumnType("nvarchar(max)");
b.Property("RequestingEmployeeId")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("StartDate")
.HasColumnType("datetime2");
b.Property("UpdateDate")
.HasColumnType("datetime2")
.HasColumnOrder(4);
b.Property("UpdateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(2);
b.HasKey("Id");
b.HasIndex("LeaveTypeId");
b.HasIndex("OrderTypeId");
b.ToTable("OrderRequests");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.UserLog", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("Channel")
.HasColumnType("nvarchar(max)");
b.Property("CreateDate")
.HasColumnType("datetime2");
b.Property("CreateUser")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorCode")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("ErrorDescription")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("InnerException")
.HasColumnType("nvarchar(max)");
b.Property("Input")
.HasColumnType("nvarchar(max)");
b.Property("Method")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("QueryString")
.HasColumnType("nvarchar(max)");
b.Property("ServerIP")
.HasColumnType("nvarchar(max)");
b.Property("ServiceResponseTimeInSeconds")
.IsRequired()
.HasColumnType("nvarchar(max)");
b.Property("UserIP")
.HasColumnType("nvarchar(max)");
b.Property("userAgent")
.HasColumnType("nvarchar(max)");
b.HasKey("Id");
b.ToTable("UserLogs");
});
modelBuilder.Entity("MTWorkHR.Core.Entities.UserTask", b =>
{
b.Property("Id")
.ValueGeneratedOnAdd()
.HasColumnType("bigint")
.HasColumnOrder(0);
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property("Id"));
b.Property("AssignedUserId")
.HasColumnType("bigint");
b.Property("CreateDate")
.HasColumnType("datetime2")
.HasColumnOrder(3);
b.Property("CreateUser")
.HasMaxLength(450)
.HasColumnType("nvarchar(450)")
.HasColumnOrder(1);
b.Property