class CreateContabilidadeMedicoesDaObra < ActiveRecord::Migration[4.2]
  def change
    create_table :contabilidade_medicoes_da_obra do |t|
      t.integer :obra_id
      t.integer :numero
      t.decimal :valor
      t.date :data_da_medicao
      t.integer :responsavel_da_empresa_id
      t.integer :responsavel_da_prefeitura_id
      t.integer :engenheiro_responsavel_id
      t.string :art, limit: 20

      t.timestamps null: false
    end
  end
end
