LFS size column too small
Zendesk issue: https://gitlab.zendesk.com/agent/tickets/13585
The lfs_objects table has a size column that is set to integer type. In Rails, it translates to int4 which has a max value of 2147483647. This theoretically means we cannot push a file larger than 2.1GB. @marin says he tested a 3GB file earlier. This may be due to a difference in local PG version vs. Omnibus? I'm not sure.
Should we increase the column size to limit: 8 which should give us a max value of 9223372036854775807?