我想使用uuid作为ruby on rails中的默认键,并使用postgres db,我希望postgres生成这些键。做这件事的错误方法是什么?
最佳答案
这似乎起到了作用:
create_table(:deals, :id => false) do |t|
t.uuid :uuid, :null => false
t.integer :quantity
t.timestamps
end
add_index(:deals, :uuid, :unique => true, :name => 'deals_pkey')
关于ruby-on-rails - Postgres数据库列默认为Rails 4上的ruby,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/15274116/