diff options
author | Hayden Young <hi@hbjy.dev> | 2021-10-15 19:20:16 +0100 |
---|---|---|
committer | Hayden Young <hi@hbjy.dev> | 2021-10-15 19:20:16 +0100 |
commit | b9d852a4bdbb5c2478db744a91defeb8e944619b (patch) | |
tree | d6b7d8d59c9ef5d60cf71ca1f714761e8fe25e4d | |
parent | :bug: fix message sending (diff) | |
download | server-b9d852a4bdbb5c2478db744a91defeb8e944619b.tar.xz |
fix: make timestamp column a bigint
-rw-r--r-- | util/src/entities/Migration.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/src/entities/Migration.ts b/util/src/entities/Migration.ts index 09df70fb..7393496f 100644 --- a/util/src/entities/Migration.ts +++ b/util/src/entities/Migration.ts @@ -10,7 +10,7 @@ export class Migration extends BaseClassWithoutId { @PrimaryIdAutoGenerated() id: number; - @Column() + @Column({ type: 'bigint' }) timestamp: number; @Column() |