class CreateBaseTiposDeEsfera < ActiveRecord::Migration[4.2]
  def change
    create_table :base_tipos_de_esfera do |t|
      t.string :descricao, limit: 50
      t.integer :modulo_id
      t.string :modulo_type

      t.timestamps null: false
    end
  end
end
