fix: change balance_remaining tu numeric
This commit is contained in:
parent
5d203ef8b0
commit
38bdfcefd0
|
@ -10,7 +10,11 @@ export class Transactions extends BaseModel {
|
|||
@Column()
|
||||
amount: number;
|
||||
|
||||
@Column()
|
||||
@Column({
|
||||
type: 'numeric',
|
||||
precision: 20,
|
||||
scale: 2,
|
||||
})
|
||||
balance_remaining: number;
|
||||
|
||||
@Column()
|
||||
|
|
Loading…
Reference in New Issue
Block a user