mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-14 10:23:07 +02:00
0e4a111f81
Resolve #7779
19 lines
404 B
TypeScript
19 lines
404 B
TypeScript
import { PrimaryColumn, Entity, Index, Column } from 'typeorm';
|
|
import { id } from '../id';
|
|
|
|
@Entity()
|
|
export class Relay {
|
|
@PrimaryColumn(id())
|
|
public id: string;
|
|
|
|
@Index({ unique: true })
|
|
@Column('varchar', {
|
|
length: 512, nullable: false,
|
|
})
|
|
public inbox: string;
|
|
|
|
@Column('enum', {
|
|
enum: ['requesting', 'accepted', 'rejected'],
|
|
})
|
|
public status: 'requesting' | 'accepted' | 'rejected';
|
|
}
|