Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed the type of uint32 from integer to bigint in postgres (go-gor…
…m#1536) The integer type in postgres is 4 bytes. Since it is also signed, when using uint32 with high bit set you will get: `pq: value "2854263694" is out of range for type integer` To prevent this uint32 should be bigint in postgres.
- Loading branch information