class CreateAcessoModulos < ActiveRecord::Migration[4.2]
  def change
    create_table :acesso_modulos do |t|
      t.string :nome_do_modulo
      t.text :nome_de_exibicao

      t.timestamps null: false
    end
  end
end
