class CreateObraContratosDaObras < ActiveRecord::Migration[4.2]
  def change
    create_table :obra_contratos_da_obra do |t|

      t.integer :obra_id
      t.integer :contrato_id

      t.timestamps null: false
    end
  end
end
