1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-09-21 18:21:36 +02:00

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
No known key found for this signature in database
GPG Key ID: E5C78A4D88C0BA40

View File

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