create_join_tableでuuidを使う場合はどう書けばいいのか。
column_options: { type: :uuid }
を使う。
class CreateJoinTableUserWork < ActiveRecord::Migration[5.1]
def change
create_join_table :users, :works, column_options: { type: :uuid } do |t|
t.index [:user_id, :work_id]
t.index [:work_id, :user_id]
end
end
end
現場からは以上です。