1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-10 12:42:44 +01:00

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()
id: number;
@Column()
@Column({ type: 'bigint' })
timestamp: number;
@Column()