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(maxLength: 200, nullable: false), ClientId = table.Column(maxLength: 200, nullable: false), CreationTime = table.Column(nullable: false), Data = table.Column(maxLength: 50000, nullable: false), Expiration = table.Column(nullable: true), SubjectId = table.Column(maxLength: 200, nullable: true), Type = table.Column(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"); } } }