Skip to content

Instantly share code, notes, and snippets.

@mattbajorek
Last active September 4, 2021 23:58
Show Gist options
  • Save mattbajorek/1ed455a61b711c7542a3adbab0dba98c to your computer and use it in GitHub Desktop.
Save mattbajorek/1ed455a61b711c7542a3adbab0dba98c to your computer and use it in GitHub Desktop.
Initial balance decimal
import { Column, Entity } from 'typeorm';
@Entity('account')
export class AccountEntity {
@Column({ name: 'balance', type: 'decimal', precision: 10, scale: 2, default: 0.0 })
public balance: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment