fix: make timestamp column a bigint

This commit is contained in:
Hayden Young 2021-10-15 19:20:16 +01:00
parent f272a11230
commit d278c9f340

View File

@ -10,7 +10,7 @@ export class Migration extends BaseClassWithoutId {
@PrimaryIdAutoGenerated() @PrimaryIdAutoGenerated()
id: number; id: number;
@Column() @Column({ type: 'bigint' })
timestamp: number; timestamp: number;
@Column() @Column()