brilink update
This commit is contained in:
@ -45,6 +45,18 @@ export class BrilinkTransaction {
|
||||
@Column({ nullable: false })
|
||||
activity_at: Date;
|
||||
|
||||
@Column({
|
||||
length: 128,
|
||||
nullable: true,
|
||||
})
|
||||
target: string;
|
||||
|
||||
@Column({
|
||||
type: 'jsonb',
|
||||
nullable: true,
|
||||
})
|
||||
target_data: Record<string, any>;
|
||||
|
||||
@Column({
|
||||
type: 'float8',
|
||||
nullable: false,
|
||||
@ -72,6 +84,18 @@ export class BrilinkTransaction {
|
||||
})
|
||||
status: BrilinkTransactionActivity;
|
||||
|
||||
@Column({
|
||||
length: 128,
|
||||
nullable: true,
|
||||
})
|
||||
reference: string;
|
||||
|
||||
@Column({
|
||||
length: 1024,
|
||||
nullable: true,
|
||||
})
|
||||
remarks: string;
|
||||
|
||||
@Column({
|
||||
nullable: false,
|
||||
default: false
|
||||
|
||||
Reference in New Issue
Block a user