29 lines
534 B
TypeScript
29 lines
534 B
TypeScript
import { PrimaryColumn, Entity, Index, JoinColumn, Column, OneToOne } from 'typeorm';
|
|
import { User } from './user';
|
|
import { id } from '../id';
|
|
|
|
@Entity()
|
|
export class UserKeypair {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Index({ unique: true })
|
|
@Column(id())
|
|
public userId: User['id'];
|
|
|
|
@OneToOne(type => User, {
|
|
onDelete: 'CASCADE'
|
|
})
|
|
@JoinColumn()
|
|
public user: User | null;
|
|
|
|
@Column('varchar', {
|
|
length: 4096,
|
|
})
|
|
public publicKey: string;
|
|
|
|
@Column('varchar', {
|
|
length: 4096,
|
|
})
|
|
public privateKey: string;
|
|
}
|