Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
postgresデータベースを使用するRubyonRailsのデフォルトキーとしてUUIDを使用したいのですが、Postgresにキーを生成させたいと思います。これを行うRoRの方法は何ですか?
これはトリックを行うようです:
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')