summaryrefslogtreecommitdiff
path: root/src/models
diff options
context:
space:
mode:
Diffstat (limited to 'src/models')
-rw-r--r--src/models/entities/user-keypair.ts7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/models/entities/user-keypair.ts b/src/models/entities/user-keypair.ts
index 06b98d2536..be264641f7 100644
--- a/src/models/entities/user-keypair.ts
+++ b/src/models/entities/user-keypair.ts
@@ -20,5 +20,10 @@ export class UserKeypair {
@Column('varchar', {
length: 4096,
})
- public keyPem: string;
+ public publicKey: string;
+
+ @Column('varchar', {
+ length: 4096,
+ })
+ public privateKey: string;
}