239 lines
8.2 KiB
C#
239 lines
8.2 KiB
C#
// <auto-generated />
|
|
using System;
|
|
using Duende.IdentityServer.EntityFramework.DbContexts;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Infrastructure;
|
|
using Microsoft.EntityFrameworkCore.Metadata;
|
|
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
|
|
|
|
#nullable disable
|
|
|
|
namespace ZeroFramework.IdentityServer.API.Migrations.PersistedGrantMigrations
|
|
{
|
|
[DbContext(typeof(PersistedGrantDbContext))]
|
|
partial class PersistedGrantDbContextModelSnapshot : ModelSnapshot
|
|
{
|
|
protected override void BuildModel(ModelBuilder modelBuilder)
|
|
{
|
|
#pragma warning disable 612, 618
|
|
modelBuilder
|
|
.HasAnnotation("ProductVersion", "8.0.0")
|
|
.HasAnnotation("Relational:MaxIdentifierLength", 128);
|
|
|
|
SqlServerModelBuilderExtensions.UseIdentityColumns(modelBuilder);
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.DeviceFlowCodes", b =>
|
|
{
|
|
b.Property<string>("UserCode")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<string>("ClientId")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Data")
|
|
.IsRequired()
|
|
.HasMaxLength(50000)
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<string>("DeviceCode")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<DateTime?>("Expiration")
|
|
.IsRequired()
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("SessionId")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<string>("SubjectId")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.HasKey("UserCode");
|
|
|
|
b.HasIndex("DeviceCode")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("Expiration");
|
|
|
|
b.ToTable("DeviceCodes", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.Key", b =>
|
|
{
|
|
b.Property<string>("Id")
|
|
.HasColumnType("nvarchar(450)");
|
|
|
|
b.Property<string>("Algorithm")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Data")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<bool>("DataProtected")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<bool>("IsX509Certificate")
|
|
.HasColumnType("bit");
|
|
|
|
b.Property<string>("Use")
|
|
.HasColumnType("nvarchar(450)");
|
|
|
|
b.Property<int>("Version")
|
|
.HasColumnType("int");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("Use");
|
|
|
|
b.ToTable("Keys", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.PersistedGrant", b =>
|
|
{
|
|
b.Property<long>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("bigint");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<long>("Id"));
|
|
|
|
b.Property<string>("ClientId")
|
|
.IsRequired()
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<DateTime?>("ConsumedTime")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<DateTime>("CreationTime")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Data")
|
|
.IsRequired()
|
|
.HasMaxLength(50000)
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("Description")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<DateTime?>("Expiration")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Key")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<string>("SessionId")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<string>("SubjectId")
|
|
.HasMaxLength(200)
|
|
.HasColumnType("nvarchar(200)");
|
|
|
|
b.Property<string>("Type")
|
|
.IsRequired()
|
|
.HasMaxLength(50)
|
|
.HasColumnType("nvarchar(50)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("ConsumedTime");
|
|
|
|
b.HasIndex("Expiration");
|
|
|
|
b.HasIndex("Key")
|
|
.IsUnique()
|
|
.HasFilter("[Key] IS NOT NULL");
|
|
|
|
b.HasIndex("SubjectId", "ClientId", "Type");
|
|
|
|
b.HasIndex("SubjectId", "SessionId", "Type");
|
|
|
|
b.ToTable("PersistedGrants", (string)null);
|
|
});
|
|
|
|
modelBuilder.Entity("Duende.IdentityServer.EntityFramework.Entities.ServerSideSession", b =>
|
|
{
|
|
b.Property<int>("Id")
|
|
.ValueGeneratedOnAdd()
|
|
.HasColumnType("int");
|
|
|
|
SqlServerPropertyBuilderExtensions.UseIdentityColumn(b.Property<int>("Id"));
|
|
|
|
b.Property<DateTime>("Created")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Data")
|
|
.IsRequired()
|
|
.HasColumnType("nvarchar(max)");
|
|
|
|
b.Property<string>("DisplayName")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<DateTime?>("Expires")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Key")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<DateTime>("Renewed")
|
|
.HasColumnType("datetime2");
|
|
|
|
b.Property<string>("Scheme")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<string>("SessionId")
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.Property<string>("SubjectId")
|
|
.IsRequired()
|
|
.HasMaxLength(100)
|
|
.HasColumnType("nvarchar(100)");
|
|
|
|
b.HasKey("Id");
|
|
|
|
b.HasIndex("DisplayName");
|
|
|
|
b.HasIndex("Expires");
|
|
|
|
b.HasIndex("Key")
|
|
.IsUnique();
|
|
|
|
b.HasIndex("SessionId");
|
|
|
|
b.HasIndex("SubjectId");
|
|
|
|
b.ToTable("ServerSideSessions", (string)null);
|
|
});
|
|
#pragma warning restore 612, 618
|
|
}
|
|
}
|
|
}
|