Initial commit - Auth

This commit is contained in:
2026-08-05 21:15:14 +03:00
commit dda4d9e63f
1490 changed files with 53289 additions and 0 deletions
+425
View File
@@ -0,0 +1,425 @@
// <auto-generated />
using System;
using System.Collections.Generic;
using Auth.Domain;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace Domain.Migrations
{
[DbContext(typeof(Context))]
[Migration("20251122093051_mig1")]
partial class mig1
{
/// <inheritdoc />
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "9.0.7")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
{
b.Property<string>("Id")
.HasColumnType("text");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasColumnType("text");
b.Property<string>("Discriminator")
.IsRequired()
.HasMaxLength(13)
.HasColumnType("character varying(13)");
b.Property<string>("Name")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("NormalizedName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.HasKey("Id");
b.HasIndex("NormalizedName")
.IsUnique()
.HasDatabaseName("RoleNameIndex");
b.ToTable("AspNetRoles", (string)null);
b.HasDiscriminator().HasValue("IdentityRole");
b.UseTphMappingStrategy();
b.HasData(
new
{
Id = "5f2d64eb-b558-45fa-9a93-add5b9940c95",
ConcurrencyStamp = "2f3d3132-e586-4906-b127-65721f5e6d8c",
Name = "User",
NormalizedName = "USER"
},
new
{
Id = "390a583c-a48c-40ad-a96b-e579fbbae76e",
ConcurrencyStamp = "da829af8-21e0-4ad7-b6f6-4136ecb73715",
Name = "Moderator",
NormalizedName = "MODERATOR"
},
new
{
Id = "b893be66-0f84-4088-9d31-0079221f8166",
ConcurrencyStamp = "47c2d510-67ba-4c15-84a7-2acb2a38bc96",
Name = "Admin",
NormalizedName = "ADMIN"
},
new
{
Id = "7d32cf02-906b-474d-a0be-c89778cb4da6",
ConcurrencyStamp = "0dc7feb3-48dc-487f-bf3c-3f505425d18f",
Name = "SuperAdmin",
NormalizedName = "SUPERADMIN"
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("ClaimType")
.HasColumnType("text");
b.Property<string>("ClaimValue")
.HasColumnType("text");
b.Property<string>("RoleId")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("RoleId");
b.ToTable("AspNetRoleClaims", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b =>
{
b.Property<string>("Id")
.HasColumnType("text");
b.Property<int>("AccessFailedCount")
.HasColumnType("integer");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasColumnType("text");
b.Property<string>("Discriminator")
.IsRequired()
.HasMaxLength(13)
.HasColumnType("character varying(13)");
b.Property<string>("Email")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<bool>("EmailConfirmed")
.HasColumnType("boolean");
b.Property<bool>("LockoutEnabled")
.HasColumnType("boolean");
b.Property<DateTimeOffset?>("LockoutEnd")
.HasColumnType("timestamp with time zone");
b.Property<string>("NormalizedEmail")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("NormalizedUserName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("PasswordHash")
.HasColumnType("text");
b.Property<string>("PhoneNumber")
.HasColumnType("text");
b.Property<bool>("PhoneNumberConfirmed")
.HasColumnType("boolean");
b.Property<string>("SecurityStamp")
.HasColumnType("text");
b.Property<bool>("TwoFactorEnabled")
.HasColumnType("boolean");
b.Property<string>("UserName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.HasKey("Id");
b.HasIndex("NormalizedEmail")
.HasDatabaseName("EmailIndex");
b.HasIndex("NormalizedUserName")
.IsUnique()
.HasDatabaseName("UserNameIndex");
b.ToTable("AspNetUsers", (string)null);
b.HasDiscriminator().HasValue("IdentityUser");
b.UseTphMappingStrategy();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("ClaimType")
.HasColumnType("text");
b.Property<string>("ClaimValue")
.HasColumnType("text");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("UserId");
b.ToTable("AspNetUserClaims", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.Property<string>("LoginProvider")
.HasColumnType("text");
b.Property<string>("ProviderKey")
.HasColumnType("text");
b.Property<string>("ProviderDisplayName")
.HasColumnType("text");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("text");
b.HasKey("LoginProvider", "ProviderKey");
b.HasIndex("UserId");
b.ToTable("AspNetUserLogins", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.Property<string>("UserId")
.HasColumnType("text");
b.Property<string>("RoleId")
.HasColumnType("text");
b.HasKey("UserId", "RoleId");
b.HasIndex("RoleId");
b.ToTable("AspNetUserRoles", (string)null);
b.HasData(
new
{
UserId = "a9082144-5081-407c-a897-0149eaeea62e",
RoleId = "7d32cf02-906b-474d-a0be-c89778cb4da6"
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.Property<string>("UserId")
.HasColumnType("text");
b.Property<string>("LoginProvider")
.HasColumnType("text");
b.Property<string>("Name")
.HasColumnType("text");
b.Property<string>("Value")
.HasColumnType("text");
b.HasKey("UserId", "LoginProvider", "Name");
b.ToTable("AspNetUserTokens", (string)null);
});
modelBuilder.Entity("Auth.Domain.Entities.Role", b =>
{
b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityRole");
b.HasDiscriminator().HasValue("Role");
});
modelBuilder.Entity("Auth.Domain.Entities.HR.AppUser", b =>
{
b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser");
b.Property<string>("Address")
.HasColumnType("text");
b.Property<string>("Building")
.IsRequired()
.HasColumnType("text");
b.Property<string>("Department")
.HasColumnType("text");
b.PrimitiveCollection<List<string>>("Favorites")
.IsRequired()
.HasColumnType("text[]");
b.Property<int?>("Flat")
.HasColumnType("integer");
b.Property<int?>("Floor")
.HasColumnType("integer");
b.Property<int>("Holidays")
.HasColumnType("integer");
b.Property<string>("JobTitle")
.HasColumnType("text");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("text");
b.Property<string>("PhotoPath")
.IsRequired()
.HasColumnType("text");
b.Property<string>("RefreshToken")
.HasColumnType("text");
b.Property<DateTime?>("RefreshTokenExpiryDate")
.HasColumnType("timestamp with time zone");
b.Property<double?>("SalaryAmount")
.HasColumnType("double precision");
b.Property<string>("Street")
.HasColumnType("text");
b.Property<double>("locationLati")
.HasColumnType("double precision");
b.Property<double>("locationLong")
.HasColumnType("double precision");
b.HasDiscriminator().HasValue("AppUser");
b.HasData(
new
{
Id = "a9082144-5081-407c-a897-0149eaeea62e",
AccessFailedCount = 0,
ConcurrencyStamp = "38dead1e-ca98-406d-915e-94f74120063f",
Email = "said.amir.kattan@outlook.com",
EmailConfirmed = true,
LockoutEnabled = false,
NormalizedEmail = "SAID.AMIR.KATTAN@OUTLOOK.COM",
NormalizedUserName = "SAID.AMIR.KATTAN@OUTLOOK.COM",
PasswordHash = "AQAAAAIAAYagAAAAEK2jQjY83ovGSPqDTJdnkaJFTrnbs1NAJRg0eS8EBhhfAfC22BcHsiLU5M4k38Ruag==",
PhoneNumber = "01231231322",
PhoneNumberConfirmed = false,
SecurityStamp = "6326891a-64c3-4f52-b770-61e66454ce5a",
TwoFactorEnabled = false,
UserName = "said.amir.kattan@outlook.com",
Building = "Building 123",
Favorites = new List<string>(),
Holidays = 2,
Name = "said",
PhotoPath = "Test",
locationLati = 0.0,
locationLong = 0.0
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
#pragma warning restore 612, 618
}
}
}
@@ -0,0 +1,265 @@
using System;
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore.Migrations;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional
namespace Domain.Migrations
{
/// <inheritdoc />
public partial class mig1 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable(
name: "AspNetRoles",
columns: table => new
{
Id = table.Column<string>(type: "text", nullable: false),
Discriminator = table.Column<string>(type: "character varying(13)", maxLength: 13, 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_AspNetRoles", x => x.Id);
});
migrationBuilder.CreateTable(
name: "AspNetUsers",
columns: table => new
{
Id = table.Column<string>(type: "text", nullable: false),
Discriminator = table.Column<string>(type: "character varying(13)", maxLength: 13, nullable: false),
Name = table.Column<string>(type: "text", nullable: true),
PhotoPath = table.Column<string>(type: "text", nullable: true),
Holidays = table.Column<int>(type: "integer", nullable: true),
locationLong = table.Column<double>(type: "double precision", nullable: true),
locationLati = table.Column<double>(type: "double precision", nullable: true),
Street = table.Column<string>(type: "text", nullable: true),
Building = table.Column<string>(type: "text", nullable: true),
Address = table.Column<string>(type: "text", nullable: true),
Floor = table.Column<int>(type: "integer", nullable: true),
Flat = table.Column<int>(type: "integer", nullable: true),
Department = table.Column<string>(type: "text", nullable: true),
JobTitle = table.Column<string>(type: "text", nullable: true),
SalaryAmount = table.Column<double>(type: "double precision", nullable: true),
RefreshToken = table.Column<string>(type: "text", nullable: true),
RefreshTokenExpiryDate = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
Favorites = table.Column<List<string>>(type: "text[]", 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_AspNetUsers", x => x.Id);
});
migrationBuilder.CreateTable(
name: "AspNetRoleClaims",
columns: table => new
{
Id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
RoleId = table.Column<string>(type: "text", nullable: false),
ClaimType = table.Column<string>(type: "text", nullable: true),
ClaimValue = table.Column<string>(type: "text", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetRoleClaims", x => x.Id);
table.ForeignKey(
name: "FK_AspNetRoleClaims_AspNetRoles_RoleId",
column: x => x.RoleId,
principalTable: "AspNetRoles",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "AspNetUserClaims",
columns: table => new
{
Id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
UserId = table.Column<string>(type: "text", nullable: false),
ClaimType = table.Column<string>(type: "text", nullable: true),
ClaimValue = table.Column<string>(type: "text", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetUserClaims", x => x.Id);
table.ForeignKey(
name: "FK_AspNetUserClaims_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "AspNetUserLogins",
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<string>(type: "text", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetUserLogins", x => new { x.LoginProvider, x.ProviderKey });
table.ForeignKey(
name: "FK_AspNetUserLogins_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "AspNetUserRoles",
columns: table => new
{
UserId = table.Column<string>(type: "text", nullable: false),
RoleId = table.Column<string>(type: "text", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_AspNetUserRoles", x => new { x.UserId, x.RoleId });
table.ForeignKey(
name: "FK_AspNetUserRoles_AspNetRoles_RoleId",
column: x => x.RoleId,
principalTable: "AspNetRoles",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_AspNetUserRoles_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "AspNetUserTokens",
columns: table => new
{
UserId = table.Column<string>(type: "text", 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_AspNetUserTokens", x => new { x.UserId, x.LoginProvider, x.Name });
table.ForeignKey(
name: "FK_AspNetUserTokens_AspNetUsers_UserId",
column: x => x.UserId,
principalTable: "AspNetUsers",
principalColumn: "Id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.InsertData(
table: "AspNetRoles",
columns: new[] { "Id", "ConcurrencyStamp", "Discriminator", "Name", "NormalizedName" },
values: new object[,]
{
{ "390a583c-a48c-40ad-a96b-e579fbbae76e", "da829af8-21e0-4ad7-b6f6-4136ecb73715", "IdentityRole", "Moderator", "MODERATOR" },
{ "5f2d64eb-b558-45fa-9a93-add5b9940c95", "2f3d3132-e586-4906-b127-65721f5e6d8c", "IdentityRole", "User", "USER" },
{ "7d32cf02-906b-474d-a0be-c89778cb4da6", "0dc7feb3-48dc-487f-bf3c-3f505425d18f", "IdentityRole", "SuperAdmin", "SUPERADMIN" },
{ "b893be66-0f84-4088-9d31-0079221f8166", "47c2d510-67ba-4c15-84a7-2acb2a38bc96", "IdentityRole", "Admin", "ADMIN" }
});
migrationBuilder.InsertData(
table: "AspNetUsers",
columns: new[] { "Id", "AccessFailedCount", "Address", "Building", "ConcurrencyStamp", "Department", "Discriminator", "Email", "EmailConfirmed", "Favorites", "Flat", "Floor", "Holidays", "JobTitle", "LockoutEnabled", "LockoutEnd", "Name", "NormalizedEmail", "NormalizedUserName", "PasswordHash", "PhoneNumber", "PhoneNumberConfirmed", "PhotoPath", "RefreshToken", "RefreshTokenExpiryDate", "SalaryAmount", "SecurityStamp", "Street", "TwoFactorEnabled", "UserName", "locationLati", "locationLong" },
values: new object[] { "a9082144-5081-407c-a897-0149eaeea62e", 0, null, "Building 123", "38dead1e-ca98-406d-915e-94f74120063f", null, "AppUser", "said.amir.kattan@outlook.com", true, new List<string>(), null, null, 2, null, false, null, "said", "SAID.AMIR.KATTAN@OUTLOOK.COM", "SAID.AMIR.KATTAN@OUTLOOK.COM", "AQAAAAIAAYagAAAAEK2jQjY83ovGSPqDTJdnkaJFTrnbs1NAJRg0eS8EBhhfAfC22BcHsiLU5M4k38Ruag==", "01231231322", false, "Test", null, null, null, "6326891a-64c3-4f52-b770-61e66454ce5a", null, false, "said.amir.kattan@outlook.com", 0.0, 0.0 });
migrationBuilder.InsertData(
table: "AspNetUserRoles",
columns: new[] { "RoleId", "UserId" },
values: new object[] { "7d32cf02-906b-474d-a0be-c89778cb4da6", "a9082144-5081-407c-a897-0149eaeea62e" });
migrationBuilder.CreateIndex(
name: "IX_AspNetRoleClaims_RoleId",
table: "AspNetRoleClaims",
column: "RoleId");
migrationBuilder.CreateIndex(
name: "RoleNameIndex",
table: "AspNetRoles",
column: "NormalizedName",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_AspNetUserClaims_UserId",
table: "AspNetUserClaims",
column: "UserId");
migrationBuilder.CreateIndex(
name: "IX_AspNetUserLogins_UserId",
table: "AspNetUserLogins",
column: "UserId");
migrationBuilder.CreateIndex(
name: "IX_AspNetUserRoles_RoleId",
table: "AspNetUserRoles",
column: "RoleId");
migrationBuilder.CreateIndex(
name: "EmailIndex",
table: "AspNetUsers",
column: "NormalizedEmail");
migrationBuilder.CreateIndex(
name: "UserNameIndex",
table: "AspNetUsers",
column: "NormalizedUserName",
unique: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "AspNetRoleClaims");
migrationBuilder.DropTable(
name: "AspNetUserClaims");
migrationBuilder.DropTable(
name: "AspNetUserLogins");
migrationBuilder.DropTable(
name: "AspNetUserRoles");
migrationBuilder.DropTable(
name: "AspNetUserTokens");
migrationBuilder.DropTable(
name: "AspNetRoles");
migrationBuilder.DropTable(
name: "AspNetUsers");
}
}
}
+425
View File
@@ -0,0 +1,425 @@
// <auto-generated />
using System;
using System.Collections.Generic;
using Auth.Domain;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Migrations;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace Domain.Migrations
{
[DbContext(typeof(Context))]
[Migration("20251201111936_mig2")]
partial class mig2
{
/// <inheritdoc />
protected override void BuildTargetModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "9.0.7")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
{
b.Property<string>("Id")
.HasColumnType("text");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasColumnType("text");
b.Property<string>("Discriminator")
.IsRequired()
.HasMaxLength(13)
.HasColumnType("character varying(13)");
b.Property<string>("Name")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("NormalizedName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.HasKey("Id");
b.HasIndex("NormalizedName")
.IsUnique()
.HasDatabaseName("RoleNameIndex");
b.ToTable("AspNetRoles", (string)null);
b.HasDiscriminator().HasValue("IdentityRole");
b.UseTphMappingStrategy();
b.HasData(
new
{
Id = "64fb5756-3278-4a10-9fb7-56b8c171a50f",
ConcurrencyStamp = "1c17731b-2ae7-43d5-91ba-d29eb67f531d",
Name = "User",
NormalizedName = "USER"
},
new
{
Id = "f84f7631-463a-4ee3-80ec-f196f621c144",
ConcurrencyStamp = "fc15c07c-d1e3-423e-9feb-d8ca6e27a9a2",
Name = "Moderator",
NormalizedName = "MODERATOR"
},
new
{
Id = "c0cc1518-1709-48f1-8260-9ba582e0dd9d",
ConcurrencyStamp = "d251ab61-bff0-4d33-8f39-8a9980edd897",
Name = "Admin",
NormalizedName = "ADMIN"
},
new
{
Id = "26ece933-021a-442a-9d22-9c331ecc5e59",
ConcurrencyStamp = "fd82451c-b583-4768-9601-efc7e1b6d408",
Name = "SuperAdmin",
NormalizedName = "SUPERADMIN"
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("ClaimType")
.HasColumnType("text");
b.Property<string>("ClaimValue")
.HasColumnType("text");
b.Property<string>("RoleId")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("RoleId");
b.ToTable("AspNetRoleClaims", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b =>
{
b.Property<string>("Id")
.HasColumnType("text");
b.Property<int>("AccessFailedCount")
.HasColumnType("integer");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasColumnType("text");
b.Property<string>("Discriminator")
.IsRequired()
.HasMaxLength(13)
.HasColumnType("character varying(13)");
b.Property<string>("Email")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<bool>("EmailConfirmed")
.HasColumnType("boolean");
b.Property<bool>("LockoutEnabled")
.HasColumnType("boolean");
b.Property<DateTimeOffset?>("LockoutEnd")
.HasColumnType("timestamp with time zone");
b.Property<string>("NormalizedEmail")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("NormalizedUserName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("PasswordHash")
.HasColumnType("text");
b.Property<string>("PhoneNumber")
.HasColumnType("text");
b.Property<bool>("PhoneNumberConfirmed")
.HasColumnType("boolean");
b.Property<string>("SecurityStamp")
.HasColumnType("text");
b.Property<bool>("TwoFactorEnabled")
.HasColumnType("boolean");
b.Property<string>("UserName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.HasKey("Id");
b.HasIndex("NormalizedEmail")
.HasDatabaseName("EmailIndex");
b.HasIndex("NormalizedUserName")
.IsUnique()
.HasDatabaseName("UserNameIndex");
b.ToTable("AspNetUsers", (string)null);
b.HasDiscriminator().HasValue("IdentityUser");
b.UseTphMappingStrategy();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("ClaimType")
.HasColumnType("text");
b.Property<string>("ClaimValue")
.HasColumnType("text");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("UserId");
b.ToTable("AspNetUserClaims", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.Property<string>("LoginProvider")
.HasColumnType("text");
b.Property<string>("ProviderKey")
.HasColumnType("text");
b.Property<string>("ProviderDisplayName")
.HasColumnType("text");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("text");
b.HasKey("LoginProvider", "ProviderKey");
b.HasIndex("UserId");
b.ToTable("AspNetUserLogins", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.Property<string>("UserId")
.HasColumnType("text");
b.Property<string>("RoleId")
.HasColumnType("text");
b.HasKey("UserId", "RoleId");
b.HasIndex("RoleId");
b.ToTable("AspNetUserRoles", (string)null);
b.HasData(
new
{
UserId = "67eefc0a-cb03-411e-8557-6b4fe4c40fa8",
RoleId = "26ece933-021a-442a-9d22-9c331ecc5e59"
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.Property<string>("UserId")
.HasColumnType("text");
b.Property<string>("LoginProvider")
.HasColumnType("text");
b.Property<string>("Name")
.HasColumnType("text");
b.Property<string>("Value")
.HasColumnType("text");
b.HasKey("UserId", "LoginProvider", "Name");
b.ToTable("AspNetUserTokens", (string)null);
});
modelBuilder.Entity("Auth.Domain.Entities.Role", b =>
{
b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityRole");
b.HasDiscriminator().HasValue("Role");
});
modelBuilder.Entity("Auth.Domain.Entities.HR.AppUser", b =>
{
b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser");
b.Property<string>("Address")
.HasColumnType("text");
b.Property<string>("Building")
.IsRequired()
.HasColumnType("text");
b.Property<string>("Department")
.HasColumnType("text");
b.PrimitiveCollection<List<string>>("Favorites")
.IsRequired()
.HasColumnType("text[]");
b.Property<int?>("Flat")
.HasColumnType("integer");
b.Property<int?>("Floor")
.HasColumnType("integer");
b.Property<int>("Holidays")
.HasColumnType("integer");
b.Property<string>("JobTitle")
.HasColumnType("text");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("text");
b.Property<string>("PhotoPath")
.IsRequired()
.HasColumnType("text");
b.Property<string>("RefreshToken")
.HasColumnType("text");
b.Property<DateTime?>("RefreshTokenExpiryDate")
.HasColumnType("timestamp with time zone");
b.Property<double?>("SalaryAmount")
.HasColumnType("double precision");
b.Property<string>("Street")
.HasColumnType("text");
b.Property<double>("locationLati")
.HasColumnType("double precision");
b.Property<double>("locationLong")
.HasColumnType("double precision");
b.HasDiscriminator().HasValue("AppUser");
b.HasData(
new
{
Id = "67eefc0a-cb03-411e-8557-6b4fe4c40fa8",
AccessFailedCount = 0,
ConcurrencyStamp = "4b5b25cb-4cb0-4c01-b7b7-e88a74c9dccb",
Email = "said.amir.kattan@outlook.com",
EmailConfirmed = true,
LockoutEnabled = false,
NormalizedEmail = "SAID.AMIR.KATTAN@OUTLOOK.COM",
NormalizedUserName = "SAID.AMIR.KATTAN@OUTLOOK.COM",
PasswordHash = "AQAAAAIAAYagAAAAEIXlJnxz7XY6hqaQji0dvUgFH7Km+uPKtqohXEEtouUNLfuUR8w7OcrJsu/MJxLLTA==",
PhoneNumber = "01231231322",
PhoneNumberConfirmed = false,
SecurityStamp = "ab41ea0c-937b-48db-b6d2-8065d8a7935f",
TwoFactorEnabled = false,
UserName = "said.amir.kattan@outlook.com",
Building = "Building 123",
Favorites = new List<string>(),
Holidays = 2,
Name = "said",
PhotoPath = "Test",
locationLati = 0.0,
locationLong = 0.0
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
#pragma warning restore 612, 618
}
}
}
@@ -0,0 +1,123 @@
using System.Collections.Generic;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional
namespace Domain.Migrations
{
/// <inheritdoc />
public partial class mig2 : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.DeleteData(
table: "AspNetRoles",
keyColumn: "Id",
keyValue: "390a583c-a48c-40ad-a96b-e579fbbae76e");
migrationBuilder.DeleteData(
table: "AspNetRoles",
keyColumn: "Id",
keyValue: "5f2d64eb-b558-45fa-9a93-add5b9940c95");
migrationBuilder.DeleteData(
table: "AspNetRoles",
keyColumn: "Id",
keyValue: "b893be66-0f84-4088-9d31-0079221f8166");
migrationBuilder.DeleteData(
table: "AspNetUserRoles",
keyColumns: new[] { "RoleId", "UserId" },
keyValues: new object[] { "7d32cf02-906b-474d-a0be-c89778cb4da6", "a9082144-5081-407c-a897-0149eaeea62e" });
migrationBuilder.DeleteData(
table: "AspNetRoles",
keyColumn: "Id",
keyValue: "7d32cf02-906b-474d-a0be-c89778cb4da6");
migrationBuilder.DeleteData(
table: "AspNetUsers",
keyColumn: "Id",
keyValue: "a9082144-5081-407c-a897-0149eaeea62e");
migrationBuilder.InsertData(
table: "AspNetRoles",
columns: new[] { "Id", "ConcurrencyStamp", "Discriminator", "Name", "NormalizedName" },
values: new object[,]
{
{ "26ece933-021a-442a-9d22-9c331ecc5e59", "fd82451c-b583-4768-9601-efc7e1b6d408", "IdentityRole", "SuperAdmin", "SUPERADMIN" },
{ "64fb5756-3278-4a10-9fb7-56b8c171a50f", "1c17731b-2ae7-43d5-91ba-d29eb67f531d", "IdentityRole", "User", "USER" },
{ "c0cc1518-1709-48f1-8260-9ba582e0dd9d", "d251ab61-bff0-4d33-8f39-8a9980edd897", "IdentityRole", "Admin", "ADMIN" },
{ "f84f7631-463a-4ee3-80ec-f196f621c144", "fc15c07c-d1e3-423e-9feb-d8ca6e27a9a2", "IdentityRole", "Moderator", "MODERATOR" }
});
migrationBuilder.InsertData(
table: "AspNetUsers",
columns: new[] { "Id", "AccessFailedCount", "Address", "Building", "ConcurrencyStamp", "Department", "Discriminator", "Email", "EmailConfirmed", "Favorites", "Flat", "Floor", "Holidays", "JobTitle", "LockoutEnabled", "LockoutEnd", "Name", "NormalizedEmail", "NormalizedUserName", "PasswordHash", "PhoneNumber", "PhoneNumberConfirmed", "PhotoPath", "RefreshToken", "RefreshTokenExpiryDate", "SalaryAmount", "SecurityStamp", "Street", "TwoFactorEnabled", "UserName", "locationLati", "locationLong" },
values: new object[] { "67eefc0a-cb03-411e-8557-6b4fe4c40fa8", 0, null, "Building 123", "4b5b25cb-4cb0-4c01-b7b7-e88a74c9dccb", null, "AppUser", "said.amir.kattan@outlook.com", true, new List<string>(), null, null, 2, null, false, null, "said", "SAID.AMIR.KATTAN@OUTLOOK.COM", "SAID.AMIR.KATTAN@OUTLOOK.COM", "AQAAAAIAAYagAAAAEIXlJnxz7XY6hqaQji0dvUgFH7Km+uPKtqohXEEtouUNLfuUR8w7OcrJsu/MJxLLTA==", "01231231322", false, "Test", null, null, null, "ab41ea0c-937b-48db-b6d2-8065d8a7935f", null, false, "said.amir.kattan@outlook.com", 0.0, 0.0 });
migrationBuilder.InsertData(
table: "AspNetUserRoles",
columns: new[] { "RoleId", "UserId" },
values: new object[] { "26ece933-021a-442a-9d22-9c331ecc5e59", "67eefc0a-cb03-411e-8557-6b4fe4c40fa8" });
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DeleteData(
table: "AspNetRoles",
keyColumn: "Id",
keyValue: "64fb5756-3278-4a10-9fb7-56b8c171a50f");
migrationBuilder.DeleteData(
table: "AspNetRoles",
keyColumn: "Id",
keyValue: "c0cc1518-1709-48f1-8260-9ba582e0dd9d");
migrationBuilder.DeleteData(
table: "AspNetRoles",
keyColumn: "Id",
keyValue: "f84f7631-463a-4ee3-80ec-f196f621c144");
migrationBuilder.DeleteData(
table: "AspNetUserRoles",
keyColumns: new[] { "RoleId", "UserId" },
keyValues: new object[] { "26ece933-021a-442a-9d22-9c331ecc5e59", "67eefc0a-cb03-411e-8557-6b4fe4c40fa8" });
migrationBuilder.DeleteData(
table: "AspNetRoles",
keyColumn: "Id",
keyValue: "26ece933-021a-442a-9d22-9c331ecc5e59");
migrationBuilder.DeleteData(
table: "AspNetUsers",
keyColumn: "Id",
keyValue: "67eefc0a-cb03-411e-8557-6b4fe4c40fa8");
migrationBuilder.InsertData(
table: "AspNetRoles",
columns: new[] { "Id", "ConcurrencyStamp", "Discriminator", "Name", "NormalizedName" },
values: new object[,]
{
{ "390a583c-a48c-40ad-a96b-e579fbbae76e", "da829af8-21e0-4ad7-b6f6-4136ecb73715", "IdentityRole", "Moderator", "MODERATOR" },
{ "5f2d64eb-b558-45fa-9a93-add5b9940c95", "2f3d3132-e586-4906-b127-65721f5e6d8c", "IdentityRole", "User", "USER" },
{ "7d32cf02-906b-474d-a0be-c89778cb4da6", "0dc7feb3-48dc-487f-bf3c-3f505425d18f", "IdentityRole", "SuperAdmin", "SUPERADMIN" },
{ "b893be66-0f84-4088-9d31-0079221f8166", "47c2d510-67ba-4c15-84a7-2acb2a38bc96", "IdentityRole", "Admin", "ADMIN" }
});
migrationBuilder.InsertData(
table: "AspNetUsers",
columns: new[] { "Id", "AccessFailedCount", "Address", "Building", "ConcurrencyStamp", "Department", "Discriminator", "Email", "EmailConfirmed", "Favorites", "Flat", "Floor", "Holidays", "JobTitle", "LockoutEnabled", "LockoutEnd", "Name", "NormalizedEmail", "NormalizedUserName", "PasswordHash", "PhoneNumber", "PhoneNumberConfirmed", "PhotoPath", "RefreshToken", "RefreshTokenExpiryDate", "SalaryAmount", "SecurityStamp", "Street", "TwoFactorEnabled", "UserName", "locationLati", "locationLong" },
values: new object[] { "a9082144-5081-407c-a897-0149eaeea62e", 0, null, "Building 123", "38dead1e-ca98-406d-915e-94f74120063f", null, "AppUser", "said.amir.kattan@outlook.com", true, new List<string>(), null, null, 2, null, false, null, "said", "SAID.AMIR.KATTAN@OUTLOOK.COM", "SAID.AMIR.KATTAN@OUTLOOK.COM", "AQAAAAIAAYagAAAAEK2jQjY83ovGSPqDTJdnkaJFTrnbs1NAJRg0eS8EBhhfAfC22BcHsiLU5M4k38Ruag==", "01231231322", false, "Test", null, null, null, "6326891a-64c3-4f52-b770-61e66454ce5a", null, false, "said.amir.kattan@outlook.com", 0.0, 0.0 });
migrationBuilder.InsertData(
table: "AspNetUserRoles",
columns: new[] { "RoleId", "UserId" },
values: new object[] { "7d32cf02-906b-474d-a0be-c89778cb4da6", "a9082144-5081-407c-a897-0149eaeea62e" });
}
}
}
@@ -0,0 +1,422 @@
// <auto-generated />
using System;
using System.Collections.Generic;
using Auth.Domain;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace Domain.Migrations
{
[DbContext(typeof(Context))]
partial class ContextModelSnapshot : ModelSnapshot
{
protected override void BuildModel(ModelBuilder modelBuilder)
{
#pragma warning disable 612, 618
modelBuilder
.HasAnnotation("ProductVersion", "9.0.7")
.HasAnnotation("Relational:MaxIdentifierLength", 63);
NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder);
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b =>
{
b.Property<string>("Id")
.HasColumnType("text");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasColumnType("text");
b.Property<string>("Discriminator")
.IsRequired()
.HasMaxLength(13)
.HasColumnType("character varying(13)");
b.Property<string>("Name")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("NormalizedName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.HasKey("Id");
b.HasIndex("NormalizedName")
.IsUnique()
.HasDatabaseName("RoleNameIndex");
b.ToTable("AspNetRoles", (string)null);
b.HasDiscriminator().HasValue("IdentityRole");
b.UseTphMappingStrategy();
b.HasData(
new
{
Id = "64fb5756-3278-4a10-9fb7-56b8c171a50f",
ConcurrencyStamp = "1c17731b-2ae7-43d5-91ba-d29eb67f531d",
Name = "User",
NormalizedName = "USER"
},
new
{
Id = "f84f7631-463a-4ee3-80ec-f196f621c144",
ConcurrencyStamp = "fc15c07c-d1e3-423e-9feb-d8ca6e27a9a2",
Name = "Moderator",
NormalizedName = "MODERATOR"
},
new
{
Id = "c0cc1518-1709-48f1-8260-9ba582e0dd9d",
ConcurrencyStamp = "d251ab61-bff0-4d33-8f39-8a9980edd897",
Name = "Admin",
NormalizedName = "ADMIN"
},
new
{
Id = "26ece933-021a-442a-9d22-9c331ecc5e59",
ConcurrencyStamp = "fd82451c-b583-4768-9601-efc7e1b6d408",
Name = "SuperAdmin",
NormalizedName = "SUPERADMIN"
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("ClaimType")
.HasColumnType("text");
b.Property<string>("ClaimValue")
.HasColumnType("text");
b.Property<string>("RoleId")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("RoleId");
b.ToTable("AspNetRoleClaims", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b =>
{
b.Property<string>("Id")
.HasColumnType("text");
b.Property<int>("AccessFailedCount")
.HasColumnType("integer");
b.Property<string>("ConcurrencyStamp")
.IsConcurrencyToken()
.HasColumnType("text");
b.Property<string>("Discriminator")
.IsRequired()
.HasMaxLength(13)
.HasColumnType("character varying(13)");
b.Property<string>("Email")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<bool>("EmailConfirmed")
.HasColumnType("boolean");
b.Property<bool>("LockoutEnabled")
.HasColumnType("boolean");
b.Property<DateTimeOffset?>("LockoutEnd")
.HasColumnType("timestamp with time zone");
b.Property<string>("NormalizedEmail")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("NormalizedUserName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.Property<string>("PasswordHash")
.HasColumnType("text");
b.Property<string>("PhoneNumber")
.HasColumnType("text");
b.Property<bool>("PhoneNumberConfirmed")
.HasColumnType("boolean");
b.Property<string>("SecurityStamp")
.HasColumnType("text");
b.Property<bool>("TwoFactorEnabled")
.HasColumnType("boolean");
b.Property<string>("UserName")
.HasMaxLength(256)
.HasColumnType("character varying(256)");
b.HasKey("Id");
b.HasIndex("NormalizedEmail")
.HasDatabaseName("EmailIndex");
b.HasIndex("NormalizedUserName")
.IsUnique()
.HasDatabaseName("UserNameIndex");
b.ToTable("AspNetUsers", (string)null);
b.HasDiscriminator().HasValue("IdentityUser");
b.UseTphMappingStrategy();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.Property<int>("Id")
.ValueGeneratedOnAdd()
.HasColumnType("integer");
NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property<int>("Id"));
b.Property<string>("ClaimType")
.HasColumnType("text");
b.Property<string>("ClaimValue")
.HasColumnType("text");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("text");
b.HasKey("Id");
b.HasIndex("UserId");
b.ToTable("AspNetUserClaims", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.Property<string>("LoginProvider")
.HasColumnType("text");
b.Property<string>("ProviderKey")
.HasColumnType("text");
b.Property<string>("ProviderDisplayName")
.HasColumnType("text");
b.Property<string>("UserId")
.IsRequired()
.HasColumnType("text");
b.HasKey("LoginProvider", "ProviderKey");
b.HasIndex("UserId");
b.ToTable("AspNetUserLogins", (string)null);
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.Property<string>("UserId")
.HasColumnType("text");
b.Property<string>("RoleId")
.HasColumnType("text");
b.HasKey("UserId", "RoleId");
b.HasIndex("RoleId");
b.ToTable("AspNetUserRoles", (string)null);
b.HasData(
new
{
UserId = "67eefc0a-cb03-411e-8557-6b4fe4c40fa8",
RoleId = "26ece933-021a-442a-9d22-9c331ecc5e59"
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.Property<string>("UserId")
.HasColumnType("text");
b.Property<string>("LoginProvider")
.HasColumnType("text");
b.Property<string>("Name")
.HasColumnType("text");
b.Property<string>("Value")
.HasColumnType("text");
b.HasKey("UserId", "LoginProvider", "Name");
b.ToTable("AspNetUserTokens", (string)null);
});
modelBuilder.Entity("Auth.Domain.Entities.Role", b =>
{
b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityRole");
b.HasDiscriminator().HasValue("Role");
});
modelBuilder.Entity("Auth.Domain.Entities.HR.AppUser", b =>
{
b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser");
b.Property<string>("Address")
.HasColumnType("text");
b.Property<string>("Building")
.IsRequired()
.HasColumnType("text");
b.Property<string>("Department")
.HasColumnType("text");
b.PrimitiveCollection<List<string>>("Favorites")
.IsRequired()
.HasColumnType("text[]");
b.Property<int?>("Flat")
.HasColumnType("integer");
b.Property<int?>("Floor")
.HasColumnType("integer");
b.Property<int>("Holidays")
.HasColumnType("integer");
b.Property<string>("JobTitle")
.HasColumnType("text");
b.Property<string>("Name")
.IsRequired()
.HasColumnType("text");
b.Property<string>("PhotoPath")
.IsRequired()
.HasColumnType("text");
b.Property<string>("RefreshToken")
.HasColumnType("text");
b.Property<DateTime?>("RefreshTokenExpiryDate")
.HasColumnType("timestamp with time zone");
b.Property<double?>("SalaryAmount")
.HasColumnType("double precision");
b.Property<string>("Street")
.HasColumnType("text");
b.Property<double>("locationLati")
.HasColumnType("double precision");
b.Property<double>("locationLong")
.HasColumnType("double precision");
b.HasDiscriminator().HasValue("AppUser");
b.HasData(
new
{
Id = "67eefc0a-cb03-411e-8557-6b4fe4c40fa8",
AccessFailedCount = 0,
ConcurrencyStamp = "4b5b25cb-4cb0-4c01-b7b7-e88a74c9dccb",
Email = "said.amir.kattan@outlook.com",
EmailConfirmed = true,
LockoutEnabled = false,
NormalizedEmail = "SAID.AMIR.KATTAN@OUTLOOK.COM",
NormalizedUserName = "SAID.AMIR.KATTAN@OUTLOOK.COM",
PasswordHash = "AQAAAAIAAYagAAAAEIXlJnxz7XY6hqaQji0dvUgFH7Km+uPKtqohXEEtouUNLfuUR8w7OcrJsu/MJxLLTA==",
PhoneNumber = "01231231322",
PhoneNumberConfirmed = false,
SecurityStamp = "ab41ea0c-937b-48db-b6d2-8065d8a7935f",
TwoFactorEnabled = false,
UserName = "said.amir.kattan@outlook.com",
Building = "Building 123",
Favorites = new List<string>(),
Holidays = 2,
Name = "said",
PhotoPath = "Test",
locationLati = 0.0,
locationLong = 0.0
});
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null)
.WithMany()
.HasForeignKey("RoleId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken<string>", b =>
{
b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null)
.WithMany()
.HasForeignKey("UserId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
});
#pragma warning restore 612, 618
}
}
}