Możesz użyć alternatywnego sposobu definiowania kolumn, używając kolumny metoda - szczegóły można znaleźć tutaj . W twoim przykładzie wygląda to tak:
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