♻️ Move the keys store out of the publisher meta

This commit is contained in:
2025-12-30 01:44:05 +08:00
parent 777c0c089a
commit 6a360fe697
6 changed files with 2774 additions and 13 deletions

View File

@@ -1544,6 +1544,16 @@ namespace DysonNetwork.Sphere.Migrations
.HasColumnType("jsonb")
.HasColumnName("picture");
b.Property<string>("PrivateKeyPem")
.HasMaxLength(8192)
.HasColumnType("character varying(8192)")
.HasColumnName("private_key_pem");
b.Property<string>("PublicKeyPem")
.HasMaxLength(8192)
.HasColumnType("character varying(8192)")
.HasColumnName("public_key_pem");
b.Property<Guid?>("RealmId")
.HasColumnType("uuid")
.HasColumnName("realm_id");