54 lines
2.6 KiB
C#
54 lines
2.6 KiB
C#
using System;
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata;
|
|
|
|
#nullable disable
|
|
|
|
namespace Fengling.AuthService.Data.Migrations
|
|
{
|
|
/// <inheritdoc />
|
|
public partial class AddOAuthApplications : Migration
|
|
{
|
|
/// <inheritdoc />
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateTable(
|
|
name: "OAuthApplications",
|
|
columns: table => new
|
|
{
|
|
Id = table.Column<long>(type: "bigint", nullable: false)
|
|
.Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn),
|
|
ClientId = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
|
ClientSecret = table.Column<string>(type: "character varying(200)", maxLength: 200, nullable: true),
|
|
DisplayName = table.Column<string>(type: "character varying(100)", maxLength: 100, nullable: false),
|
|
RedirectUris = table.Column<string[]>(type: "text[]", nullable: false),
|
|
PostLogoutRedirectUris = table.Column<string[]>(type: "text[]", nullable: false),
|
|
Scopes = table.Column<string[]>(type: "text[]", nullable: false),
|
|
GrantTypes = table.Column<string[]>(type: "text[]", nullable: false),
|
|
ClientType = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
ConsentType = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
Status = table.Column<string>(type: "character varying(20)", maxLength: 20, nullable: false),
|
|
CreatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: false),
|
|
UpdatedAt = table.Column<DateTime>(type: "timestamp with time zone", nullable: true)
|
|
},
|
|
constraints: table =>
|
|
{
|
|
table.PrimaryKey("PK_OAuthApplications", x => x.Id);
|
|
});
|
|
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_OAuthApplications_ClientId",
|
|
table: "OAuthApplications",
|
|
column: "ClientId",
|
|
unique: true);
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropTable(
|
|
name: "OAuthApplications");
|
|
}
|
|
}
|
|
}
|