Rails Migration: Bigint on PostgreSQL seems to be failing?

前端 未结 5 2097
一向
一向 2020-12-05 18:58

Trying to create a table with a bigint column creates a standard integer column instead. What could be going wrong? I don\'t know where to start looking.

I\'m using

5条回答
  •  半阙折子戏
    2020-12-05 19:09

    In rails 4.2 + you can use like:

    create_table :table_name do |t|
       t.bigint :really_big_int
    end
    

提交回复
热议问题