in src/Services/User/User.IdentityServer/Persistence/Migrations/PersistedGrantDB/20200417103341_InitialPersistedGrantMigration.cs [24:89]
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.EnsureSchema(
name: "grant");
migrationBuilder.CreateTable(
name: "DeviceCodes",
schema: "grant",
columns: table => new
{
UserCode = table.Column<string>(maxLength: 200),
DeviceCode = table.Column<string>(maxLength: 200),
SubjectId = table.Column<string>(maxLength: 200, nullable: true),
ClientId = table.Column<string>(maxLength: 200),
CreationTime = table.Column<DateTime>(),
Expiration = table.Column<DateTime>(),
Data = table.Column<string>(maxLength: 50000)
},
constraints: table =>
{
table.PrimaryKey("PK_DeviceCodes", x => x.UserCode);
});
migrationBuilder.CreateTable(
name: "PersistedGrants",
schema: "grant",
columns: table => new
{
Key = table.Column<string>(maxLength: 200),
Type = table.Column<string>(maxLength: 50),
SubjectId = table.Column<string>(maxLength: 200, nullable: true),
ClientId = table.Column<string>(maxLength: 200),
CreationTime = table.Column<DateTime>(),
Expiration = table.Column<DateTime>(nullable: true),
Data = table.Column<string>(maxLength: 50000)
},
constraints: table =>
{
table.PrimaryKey("PK_PersistedGrants", x => x.Key);
});
migrationBuilder.CreateIndex(
name: "IX_DeviceCodes_DeviceCode",
schema: "grant",
table: "DeviceCodes",
column: "DeviceCode",
unique: true);
migrationBuilder.CreateIndex(
name: "IX_DeviceCodes_Expiration",
schema: "grant",
table: "DeviceCodes",
column: "Expiration");
migrationBuilder.CreateIndex(
name: "IX_PersistedGrants_Expiration",
schema: "grant",
table: "PersistedGrants",
column: "Expiration");
migrationBuilder.CreateIndex(
name: "IX_PersistedGrants_SubjectId_ClientId_Type",
schema: "grant",
table: "PersistedGrants",
columns: new[] { "SubjectId", "ClientId", "Type" });
}