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