class CreateBaseTiposDeOrcamento < ActiveRecord::Migration[4.2]
  def change
    create_table :base_tipos_de_orcamento do |t|
      t.string :codigo, limit: 1
      t.string :descricao, limit: 40
      t.integer :modulo_id
      t.string :modulo_type

      t.timestamps null: false
    end
  end
end
