using System; using Microsoft.EntityFrameworkCore.Migrations; using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; #nullable disable namespace Sufi.Demo.PeopleDirectory.Persistence.Migrations { /// public partial class InitialSchema : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.EnsureSchema( name: "Audit"); migrationBuilder.EnsureSchema( name: "Identity"); migrationBuilder.CreateTable( name: "AuditTrails", schema: "Audit", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), UserId = table.Column(type: "character varying(100)", nullable: true), Type = table.Column(type: "character varying(20)", nullable: false), TableName = table.Column(type: "character varying(50)", nullable: false), DateTime = table.Column(type: "timestamp with time zone", nullable: false), OldValues = table.Column(type: "character varying(255)", nullable: true), NewValues = table.Column(type: "character varying(255)", nullable: true), AffectedColumns = table.Column(type: "character varying(100)", nullable: true), PrimaryKey = table.Column(type: "character varying(100)", nullable: false) }, constraints: table => { table.PrimaryKey("PK_AuditTrails", x => x.Id); }); migrationBuilder.CreateTable( name: "Contacts", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), UserName = table.Column(type: "character varying(50)", nullable: false), Phone = table.Column(type: "character varying(20)", nullable: false), Email = table.Column(type: "character varying(100)", nullable: false), SkillSets = table.Column(type: "character varying(255)", nullable: false), Hobby = table.Column(type: "character varying(255)", nullable: false), CreatedBy = table.Column(type: "character varying(100)", nullable: true), CreatedOn = table.Column(type: "timestamp with time zone", nullable: false), LastModifiedBy = table.Column(type: "character varying(100)", nullable: true), LastModifiedOn = table.Column(type: "timestamp with time zone", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Contacts", x => x.Id); }); migrationBuilder.CreateTable( name: "Roles", schema: "Identity", columns: table => new { Id = table.Column(type: "text", nullable: false), Description = table.Column(type: "character varying(100)", nullable: true), CreatedBy = table.Column(type: "character varying(100)", nullable: true), CreatedOn = table.Column(type: "timestamp with time zone", nullable: false), LastModifiedBy = table.Column(type: "character varying(100)", nullable: true), LastModifiedOn = table.Column(type: "timestamp with time zone", nullable: true), Name = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), NormalizedName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), ConcurrencyStamp = table.Column(type: "text", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Roles", x => x.Id); }); migrationBuilder.CreateTable( name: "ServerInfos", columns: table => new { Id = table.Column(type: "text", nullable: false), Value = table.Column(type: "character varying(255)", nullable: false), CreatedBy = table.Column(type: "character varying(100)", nullable: true), CreatedOn = table.Column(type: "timestamp with time zone", nullable: false), LastModifiedBy = table.Column(type: "character varying(100)", nullable: true), LastModifiedOn = table.Column(type: "timestamp with time zone", nullable: true) }, constraints: table => { table.PrimaryKey("PK_ServerInfos", x => x.Id); }); migrationBuilder.CreateTable( name: "Users", schema: "Identity", columns: table => new { Id = table.Column(type: "text", nullable: false), IsActive = table.Column(type: "boolean", nullable: false), IsDeleted = table.Column(type: "boolean", nullable: false), DeletedOn = table.Column(type: "timestamp with time zone", nullable: true), CreatedBy = table.Column(type: "character varying(100)", nullable: true), CreatedOn = table.Column(type: "timestamp with time zone", nullable: false), LastModifiedBy = table.Column(type: "character varying(100)", nullable: true), LastModifiedOn = table.Column(type: "timestamp with time zone", nullable: true), UserName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), NormalizedUserName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), Email = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), NormalizedEmail = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), EmailConfirmed = table.Column(type: "boolean", nullable: false), PasswordHash = table.Column(type: "text", nullable: true), SecurityStamp = table.Column(type: "text", nullable: true), ConcurrencyStamp = table.Column(type: "text", nullable: true), PhoneNumber = table.Column(type: "text", nullable: true), PhoneNumberConfirmed = table.Column(type: "boolean", nullable: false), TwoFactorEnabled = table.Column(type: "boolean", nullable: false), LockoutEnd = table.Column(type: "timestamp with time zone", nullable: true), LockoutEnabled = table.Column(type: "boolean", nullable: false), AccessFailedCount = table.Column(type: "integer", nullable: false) }, constraints: table => { table.PrimaryKey("PK_Users", x => x.Id); }); migrationBuilder.CreateTable( name: "RoleClaims", schema: "Identity", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), Description = table.Column(type: "character varying(100)", nullable: true), Group = table.Column(type: "character varying(100)", nullable: true), CreatedBy = table.Column(type: "character varying(100)", nullable: true), CreatedOn = table.Column(type: "timestamp with time zone", nullable: false), LastModifiedBy = table.Column(type: "character varying(100)", nullable: true), LastModifiedOn = table.Column(type: "timestamp with time zone", nullable: true), AppRoleId = table.Column(type: "text", nullable: true), RoleId = table.Column(type: "text", nullable: false), ClaimType = table.Column(type: "text", nullable: true), ClaimValue = table.Column(type: "text", nullable: true) }, constraints: table => { table.PrimaryKey("PK_RoleClaims", x => x.Id); table.ForeignKey( name: "FK_RoleClaims_Roles_AppRoleId", column: x => x.AppRoleId, principalSchema: "Identity", principalTable: "Roles", principalColumn: "Id"); table.ForeignKey( name: "FK_RoleClaims_Roles_RoleId", column: x => x.RoleId, principalSchema: "Identity", principalTable: "Roles", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "UserClaims", schema: "Identity", columns: table => new { Id = table.Column(type: "integer", nullable: false) .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), UserId = table.Column(type: "text", nullable: false), ClaimType = table.Column(type: "text", nullable: true), ClaimValue = table.Column(type: "text", nullable: true) }, constraints: table => { table.PrimaryKey("PK_UserClaims", x => x.Id); table.ForeignKey( name: "FK_UserClaims_Users_UserId", column: x => x.UserId, principalSchema: "Identity", principalTable: "Users", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "UserLogins", schema: "Identity", columns: table => new { LoginProvider = table.Column(type: "text", nullable: false), ProviderKey = table.Column(type: "text", nullable: false), ProviderDisplayName = table.Column(type: "text", nullable: true), UserId = table.Column(type: "text", nullable: false) }, constraints: table => { table.PrimaryKey("PK_UserLogins", x => new { x.LoginProvider, x.ProviderKey }); table.ForeignKey( name: "FK_UserLogins_Users_UserId", column: x => x.UserId, principalSchema: "Identity", principalTable: "Users", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "UserRoles", schema: "Identity", columns: table => new { UserId = table.Column(type: "text", nullable: false), RoleId = table.Column(type: "text", nullable: false) }, constraints: table => { table.PrimaryKey("PK_UserRoles", x => new { x.UserId, x.RoleId }); table.ForeignKey( name: "FK_UserRoles_Roles_RoleId", column: x => x.RoleId, principalSchema: "Identity", principalTable: "Roles", principalColumn: "Id", onDelete: ReferentialAction.Cascade); table.ForeignKey( name: "FK_UserRoles_Users_UserId", column: x => x.UserId, principalSchema: "Identity", principalTable: "Users", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateTable( name: "UserTokens", schema: "Identity", columns: table => new { UserId = table.Column(type: "text", nullable: false), LoginProvider = table.Column(type: "text", nullable: false), Name = table.Column(type: "text", nullable: false), Value = table.Column(type: "text", nullable: true) }, constraints: table => { table.PrimaryKey("PK_UserTokens", x => new { x.UserId, x.LoginProvider, x.Name }); table.ForeignKey( name: "FK_UserTokens_Users_UserId", column: x => x.UserId, principalSchema: "Identity", principalTable: "Users", principalColumn: "Id", onDelete: ReferentialAction.Cascade); }); migrationBuilder.CreateIndex( name: "IX_RoleClaims_AppRoleId", schema: "Identity", table: "RoleClaims", column: "AppRoleId"); migrationBuilder.CreateIndex( name: "IX_RoleClaims_RoleId", schema: "Identity", table: "RoleClaims", column: "RoleId"); migrationBuilder.CreateIndex( name: "RoleNameIndex", schema: "Identity", table: "Roles", column: "NormalizedName", unique: true); migrationBuilder.CreateIndex( name: "IX_UserClaims_UserId", schema: "Identity", table: "UserClaims", column: "UserId"); migrationBuilder.CreateIndex( name: "IX_UserLogins_UserId", schema: "Identity", table: "UserLogins", column: "UserId"); migrationBuilder.CreateIndex( name: "IX_UserRoles_RoleId", schema: "Identity", table: "UserRoles", column: "RoleId"); migrationBuilder.CreateIndex( name: "EmailIndex", schema: "Identity", table: "Users", column: "NormalizedEmail"); migrationBuilder.CreateIndex( name: "UserNameIndex", schema: "Identity", table: "Users", column: "NormalizedUserName", unique: true); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "AuditTrails", schema: "Audit"); migrationBuilder.DropTable( name: "Contacts"); migrationBuilder.DropTable( name: "RoleClaims", schema: "Identity"); migrationBuilder.DropTable( name: "ServerInfos"); migrationBuilder.DropTable( name: "UserClaims", schema: "Identity"); migrationBuilder.DropTable( name: "UserLogins", schema: "Identity"); migrationBuilder.DropTable( name: "UserRoles", schema: "Identity"); migrationBuilder.DropTable( name: "UserTokens", schema: "Identity"); migrationBuilder.DropTable( name: "Roles", schema: "Identity"); migrationBuilder.DropTable( name: "Users", schema: "Identity"); } } }