95 lines
4.5 KiB
C#
95 lines
4.5 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace TakeoutSaaS.Infrastructure.Identity.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class InitialIdentity : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "identity_users",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
Account = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: false),
|
|
DisplayName = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: false),
|
|
PasswordHash = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: false),
|
|
MerchantId = table.Column<Guid>(type: "uuid", nullable: true),
|
|
Roles = table.Column<string>(type: "text", nullable: false),
|
|
Permissions = table.Column<string>(type: "text", nullable: false),
|
|
Avatar = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
UpdatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
DeletedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
CreatedBy = table.Column<Guid>(type: "uuid", nullable: true),
|
|
UpdatedBy = table.Column<Guid>(type: "uuid", nullable: true),
|
|
DeletedBy = table.Column<Guid>(type: "uuid", nullable: true),
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_identity_users", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateTable(
|
|
name: "mini_users",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<Guid>(type: "uuid", nullable: false),
|
|
OpenId = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: false),
|
|
UnionId = table.Column<string>(type: "character varying(128)", maxLength: 128, nullable: true),
|
|
Nickname = table.Column<string>(type: "character varying(64)", maxLength: 64, nullable: false),
|
|
Avatar = table.Column<string>(type: "character varying(256)", maxLength: 256, nullable: true),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
UpdatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
DeletedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true),
|
|
CreatedBy = table.Column<Guid>(type: "uuid", nullable: true),
|
|
UpdatedBy = table.Column<Guid>(type: "uuid", nullable: true),
|
|
DeletedBy = table.Column<Guid>(type: "uuid", nullable: true),
|
|
TenantId = table.Column<Guid>(type: "uuid", nullable: false)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_mini_users", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_identity_users_TenantId",
|
|
table: "identity_users",
|
|
column: "TenantId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_identity_users_TenantId_Account",
|
|
table: "identity_users",
|
|
columns: new[] { "TenantId", "Account" },
|
|
unique: true);
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_mini_users_TenantId",
|
|
table: "mini_users",
|
|
column: "TenantId");
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_mini_users_TenantId_OpenId",
|
|
table: "mini_users",
|
|
columns: new[] { "TenantId", "OpenId" },
|
|
unique: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "identity_users");
|
|
|
|
migrationBuilder.DropTable(
|
|
name: "mini_users");
|
|
}
|
|
}
|
|
}
|