class CreateAcessoAcoes < ActiveRecord::Migration[4.2]
  def change
    create_table :acesso_acoes do |t|
      t.string :nome_da_acao
      t.string :nome_de_exibicao
      t.integer :controle_id

      t.timestamps null: false
    end
  end
end
