diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-04-08 03:35:02 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-04-08 03:35:02 +0900 |
| commit | 142d59be85cd06b11d9df1375bcd0a84c0425e22 (patch) | |
| tree | 63255a389c37ab19c9b9fb80d9c633275340a155 /src/models | |
| parent | Fix bug (diff) | |
| download | misskey-142d59be85cd06b11d9df1375bcd0a84c0425e22.tar.gz misskey-142d59be85cd06b11d9df1375bcd0a84c0425e22.tar.bz2 misskey-142d59be85cd06b11d9df1375bcd0a84c0425e22.zip | |
Fix bug
Diffstat (limited to 'src/models')
| -rw-r--r-- | src/models/entities/user-keypair.ts | 7 |
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; } |