41 lines
1.5 KiB
C#
41 lines
1.5 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|||
|
|
|||
|
namespace Identity.API.Migrations
|
|||
|
{
|
|||
|
public partial class Initpersistedgrant : Migration
|
|||
|
{
|
|||
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.CreateTable(
|
|||
|
name: "PersistedGrants",
|
|||
|
columns: table => new
|
|||
|
{
|
|||
|
Key = table.Column<string>(maxLength: 200, nullable: false),
|
|||
|
ClientId = table.Column<string>(maxLength: 200, nullable: false),
|
|||
|
CreationTime = table.Column<DateTime>(nullable: false),
|
|||
|
Data = table.Column<string>(maxLength: 50000, nullable: false),
|
|||
|
Expiration = table.Column<DateTime>(nullable: true),
|
|||
|
SubjectId = table.Column<string>(maxLength: 200, nullable: true),
|
|||
|
Type = table.Column<string>(maxLength: 50, nullable: false)
|
|||
|
},
|
|||
|
constraints: table =>
|
|||
|
{
|
|||
|
table.PrimaryKey("PK_PersistedGrants", x => x.Key);
|
|||
|
});
|
|||
|
|
|||
|
migrationBuilder.CreateIndex(
|
|||
|
name: "IX_PersistedGrants_SubjectId_ClientId_Type",
|
|||
|
table: "PersistedGrants",
|
|||
|
columns: new[] { "SubjectId", "ClientId", "Type" });
|
|||
|
}
|
|||
|
|
|||
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|||
|
{
|
|||
|
migrationBuilder.DropTable(
|
|||
|
name: "PersistedGrants");
|
|||
|
}
|
|||
|
}
|
|||
|
}
|