PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Aumenta l'intervallo di ID ActiveModel a 8 byte

Un possibile duplicato ma poiché ci saranno errori:

Ciò significa che la tua tabella dovrebbe apparire così:

class MyModels < ActiveRecord::Migration[5.0]
  def change
    create_table :my_models, {id: false } do |t|
      t.column   :id, limit: 8
      ...
     end
  end
end