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