fix: make timestamp column a bigint

This commit is contained in:
Hayden Young
2021-10-15 19:20:16 +01:00
parent 618b5e6509
commit b9d852a4bd
+1 -1
View File
@@ -10,7 +10,7 @@ export class Migration extends BaseClassWithoutId {
@PrimaryIdAutoGenerated()
id: number;
@Column()
@Column({ type: 'bigint' })
timestamp: number;
@Column()