mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
Add hold_available_amount column
This commit is contained in:
parent
f78f2d5977
commit
14a0a4344d
@ -19,6 +19,16 @@ export class TransactionLink extends BaseEntity {
|
|||||||
})
|
})
|
||||||
amount: Decimal
|
amount: Decimal
|
||||||
|
|
||||||
|
@Column({
|
||||||
|
type: 'decimal',
|
||||||
|
name: 'hold_available_amount',
|
||||||
|
precision: 40,
|
||||||
|
scale: 20,
|
||||||
|
nullable: false,
|
||||||
|
transformer: DecimalTransformer,
|
||||||
|
})
|
||||||
|
holdAvailableAmount: Decimal
|
||||||
|
|
||||||
@Column({ length: 255, nullable: false, collation: 'utf8mb4_unicode_ci' })
|
@Column({ length: 255, nullable: false, collation: 'utf8mb4_unicode_ci' })
|
||||||
memo: string
|
memo: string
|
||||||
|
|
||||||
|
|||||||
@ -9,6 +9,7 @@ export async function upgrade(queryFn: (query: string, values?: any[]) => Promis
|
|||||||
\`id\` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
\`id\` int UNSIGNED NOT NULL AUTO_INCREMENT,
|
||||||
\`userId\` int UNSIGNED NOT NULL,
|
\`userId\` int UNSIGNED NOT NULL,
|
||||||
\`amount\` DECIMAL(40,20) NOT NULL,
|
\`amount\` DECIMAL(40,20) NOT NULL,
|
||||||
|
\`hold_available_amount\` DECIMAL(40,20) NOT NULL,
|
||||||
\`memo\` varchar(255) NOT NULL,
|
\`memo\` varchar(255) NOT NULL,
|
||||||
\`code\` varchar(96) NOT NULL,
|
\`code\` varchar(96) NOT NULL,
|
||||||
\`createdAt\` datetime NOT NULL,
|
\`createdAt\` datetime NOT NULL,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user