autobus-api_old/AutobusApi.Infrastructure/Identity/Migrations/20231113193302_InitialCreate.cs
2023-11-15 19:00:34 +02:00

289 lines
13 KiB
C#

using System;
using Microsoft.EntityFrameworkCore.Migrations;
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
#nullable disable
namespace AutobusApi.Infrastructure.Identity.Migrations
{
/// <inheritdoc />
public partial class InitialCreate : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.EnsureSchema(
name: "identity");
migrationBuilder.CreateTable(
name: "identity_roles",
schema: "identity",
columns: table => new
{
id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
name = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
normalized_name = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
concurrency_stamp = table.Column<string>(type: "text", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_identity_roles", x => x.id);
});
migrationBuilder.CreateTable(
name: "identity_users",
schema: "identity",
columns: table => new
{
id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
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),
normalized_email = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
email_confirmed = table.Column<bool>(type: "boolean", nullable: false),
password_hash = table.Column<string>(type: "text", nullable: true),
security_stamp = table.Column<string>(type: "text", nullable: true),
concurrency_stamp = table.Column<string>(type: "text", nullable: true),
two_factor_enabled = table.Column<bool>(type: "boolean", nullable: false),
lockout_end = table.Column<DateTimeOffset>(type: "timestamp with time zone", nullable: true),
lockout_enabled = table.Column<bool>(type: "boolean", nullable: false),
access_failed_count = table.Column<int>(type: "integer", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_identity_users", x => x.id);
});
migrationBuilder.CreateTable(
name: "identity_role_claims",
schema: "identity",
columns: table => new
{
id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
role_id = table.Column<int>(type: "integer", nullable: false),
claim_type = table.Column<string>(type: "text", nullable: true),
claim_value = table.Column<string>(type: "text", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_identity_role_claims", x => x.id);
table.ForeignKey(
name: "FK_identity_role_claims_identity_roles_role_id",
column: x => x.role_id,
principalSchema: "identity",
principalTable: "identity_roles",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "identity_user_claims",
schema: "identity",
columns: table => new
{
id = table.Column<int>(type: "integer", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
user_id = table.Column<int>(type: "integer", nullable: false),
claim_type = table.Column<string>(type: "text", nullable: true),
claim_value = table.Column<string>(type: "text", nullable: true)
},
constraints: table =>
{
table.PrimaryKey("PK_identity_user_claims", x => x.id);
table.ForeignKey(
name: "FK_identity_user_claims_identity_users_user_id",
column: x => x.user_id,
principalSchema: "identity",
principalTable: "identity_users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "identity_user_logins",
schema: "identity",
columns: table => new
{
login_provider = table.Column<string>(type: "text", nullable: false),
provider_key = table.Column<string>(type: "text", nullable: false),
provider_display_name = table.Column<string>(type: "text", nullable: true),
user_id = table.Column<int>(type: "integer", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_identity_user_logins", x => new { x.login_provider, x.provider_key });
table.ForeignKey(
name: "FK_identity_user_logins_identity_users_user_id",
column: x => x.user_id,
principalSchema: "identity",
principalTable: "identity_users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "identity_user_refresh_tokens",
schema: "identity",
columns: table => new
{
id = table.Column<int>(type: "int", nullable: false)
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
value = table.Column<string>(type: "varchar(256)", nullable: false),
creation_timestamp_utc = table.Column<DateTime>(type: "timestamptz", nullable: false),
expiration_timestamp_utc = table.Column<DateTime>(type: "timestamptz", nullable: false),
revokation_timestamp_utc = table.Column<DateTime>(type: "timestamptz", nullable: true),
identity_user_id = table.Column<int>(type: "int", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("id", x => x.id);
table.ForeignKey(
name: "fk_identityUserRefreshTokens_identityUser_userId",
column: x => x.identity_user_id,
principalSchema: "identity",
principalTable: "identity_users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "identity_user_roles",
schema: "identity",
columns: table => new
{
user_id = table.Column<int>(type: "integer", nullable: false),
role_id = table.Column<int>(type: "integer", nullable: false)
},
constraints: table =>
{
table.PrimaryKey("PK_identity_user_roles", x => new { x.user_id, x.role_id });
table.ForeignKey(
name: "FK_identity_user_roles_identity_roles_role_id",
column: x => x.role_id,
principalSchema: "identity",
principalTable: "identity_roles",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
table.ForeignKey(
name: "FK_identity_user_roles_identity_users_user_id",
column: x => x.user_id,
principalSchema: "identity",
principalTable: "identity_users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateTable(
name: "identity_user_tokens",
schema: "identity",
columns: table => new
{
user_id = table.Column<int>(type: "integer", nullable: false),
login_provider = 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_identity_user_tokens", x => new { x.user_id, x.login_provider, x.name });
table.ForeignKey(
name: "FK_identity_user_tokens_identity_users_user_id",
column: x => x.user_id,
principalSchema: "identity",
principalTable: "identity_users",
principalColumn: "id",
onDelete: ReferentialAction.Cascade);
});
migrationBuilder.CreateIndex(
name: "IX_identity_role_claims_role_id",
schema: "identity",
table: "identity_role_claims",
column: "role_id");
migrationBuilder.CreateIndex(
name: "RoleNameIndex",
schema: "identity",
table: "identity_roles",
column: "normalized_name",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_identity_user_claims_user_id",
schema: "identity",
table: "identity_user_claims",
column: "user_id");
migrationBuilder.CreateIndex(
name: "IX_identity_user_logins_user_id",
schema: "identity",
table: "identity_user_logins",
column: "user_id");
migrationBuilder.CreateIndex(
name: "IX_identity_user_refresh_tokens_identity_user_id",
schema: "identity",
table: "identity_user_refresh_tokens",
column: "identity_user_id");
migrationBuilder.CreateIndex(
name: "IX_identity_user_roles_role_id",
schema: "identity",
table: "identity_user_roles",
column: "role_id");
migrationBuilder.CreateIndex(
name: "EmailIndex",
schema: "identity",
table: "identity_users",
column: "normalized_email");
migrationBuilder.CreateIndex(
name: "UserNameIndex",
schema: "identity",
table: "identity_users",
column: "NormalizedUserName",
unique: true);
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable(
name: "identity_role_claims",
schema: "identity");
migrationBuilder.DropTable(
name: "identity_user_claims",
schema: "identity");
migrationBuilder.DropTable(
name: "identity_user_logins",
schema: "identity");
migrationBuilder.DropTable(
name: "identity_user_refresh_tokens",
schema: "identity");
migrationBuilder.DropTable(
name: "identity_user_roles",
schema: "identity");
migrationBuilder.DropTable(
name: "identity_user_tokens",
schema: "identity");
migrationBuilder.DropTable(
name: "identity_roles",
schema: "identity");
migrationBuilder.DropTable(
name: "identity_users",
schema: "identity");
}
}
}