Bạn có thể sử dụng cách xác định cột thay thế bằng cách sử dụng cột phương pháp - chi tiết có thể được tìm thấy tại đây . Trong ví dụ của bạn, điều này trở thành:
DB.create_table :requests do
primary_key :id
foreign_key :client_id, :clients
foreign_key :service_id, :services
DateTime :created_at, null: false
DateTime :answered_at, null: false
column :request, :jsonb, null: false
end