diff options
| author | ivarlovlie <git@ivarlovlie.no> | 2020-08-11 21:16:02 +0200 |
|---|---|---|
| committer | ivarlovlie <git@ivarlovlie.no> | 2020-08-11 21:16:02 +0200 |
| commit | a5f1018fda5572912c126b1e8dd656209fca0e46 (patch) | |
| tree | 8e6ae53e8f190bad395dc8c974c41ab376889a9e /src/server/Migrations/IdentityServer/PersistedGrant/20200811164236_INITIAL_IDENTITY_MIGRATION.cs | |
| parent | 69854dca474bf73eec9f8fcbf20f328e4453c8cf (diff) | |
| download | dough-a5f1018fda5572912c126b1e8dd656209fca0e46.tar.xz dough-a5f1018fda5572912c126b1e8dd656209fca0e46.zip | |
persisted grants
Diffstat (limited to 'src/server/Migrations/IdentityServer/PersistedGrant/20200811164236_INITIAL_IDENTITY_MIGRATION.cs')
| -rw-r--r-- | src/server/Migrations/IdentityServer/PersistedGrant/20200811164236_INITIAL_IDENTITY_MIGRATION.cs | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/src/server/Migrations/IdentityServer/PersistedGrant/20200811164236_INITIAL_IDENTITY_MIGRATION.cs b/src/server/Migrations/IdentityServer/PersistedGrant/20200811164236_INITIAL_IDENTITY_MIGRATION.cs new file mode 100644 index 0000000..5ae6fb2 --- /dev/null +++ b/src/server/Migrations/IdentityServer/PersistedGrant/20200811164236_INITIAL_IDENTITY_MIGRATION.cs @@ -0,0 +1,85 @@ +using System; +using Microsoft.EntityFrameworkCore.Migrations; + +namespace Dough.Migrations.IdentityServer.PersistedGrant +{ + public partial class INITIAL_IDENTITY_MIGRATION : Migration + { + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "DeviceCodes", + columns: table => new + { + UserCode = table.Column<string>(maxLength: 200, nullable: false), + DeviceCode = table.Column<string>(maxLength: 200, nullable: false), + SubjectId = table.Column<string>(maxLength: 200, nullable: true), + SessionId = table.Column<string>(maxLength: 100, nullable: true), + ClientId = table.Column<string>(maxLength: 200, nullable: false), + Description = table.Column<string>(maxLength: 200, nullable: true), + CreationTime = table.Column<DateTime>(nullable: false), + Expiration = table.Column<DateTime>(nullable: false), + Data = table.Column<string>(maxLength: 50000, nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_DeviceCodes", x => x.UserCode); + }); + + migrationBuilder.CreateTable( + name: "PersistedGrants", + columns: table => new + { + Key = table.Column<string>(maxLength: 200, nullable: false), + Type = table.Column<string>(maxLength: 50, nullable: false), + SubjectId = table.Column<string>(maxLength: 200, nullable: true), + SessionId = table.Column<string>(maxLength: 100, nullable: true), + ClientId = table.Column<string>(maxLength: 200, nullable: false), + Description = table.Column<string>(maxLength: 200, nullable: true), + CreationTime = table.Column<DateTime>(nullable: false), + Expiration = table.Column<DateTime>(nullable: true), + ConsumedTime = table.Column<DateTime>(nullable: true), + Data = table.Column<string>(maxLength: 50000, nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_PersistedGrants", x => x.Key); + }); + + migrationBuilder.CreateIndex( + name: "IX_DeviceCodes_DeviceCode", + table: "DeviceCodes", + column: "DeviceCode", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_DeviceCodes_Expiration", + table: "DeviceCodes", + column: "Expiration"); + + migrationBuilder.CreateIndex( + name: "IX_PersistedGrants_Expiration", + table: "PersistedGrants", + column: "Expiration"); + + migrationBuilder.CreateIndex( + name: "IX_PersistedGrants_SubjectId_ClientId_Type", + table: "PersistedGrants", + columns: new[] { "SubjectId", "ClientId", "Type" }); + + migrationBuilder.CreateIndex( + name: "IX_PersistedGrants_SubjectId_SessionId_Type", + table: "PersistedGrants", + columns: new[] { "SubjectId", "SessionId", "Type" }); + } + + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "DeviceCodes"); + + migrationBuilder.DropTable( + name: "PersistedGrants"); + } + } +} |
