class CreateObraServicoDaObra < ActiveRecord::Migration[4.2]
  def change
    create_table :obra_servicos_da_obra do |t|

      t.string :descricao
      t.integer :obra_id
      t.integer :codigo

      t.timestamps null: false
    end
  end
end
