summaryrefslogtreecommitdiffstats
path: root/db/migrate/20150528084820_add_roles_all_roles_managed.rb
blob: 08c8ddce3b77309d9c6ece86909d24d0981a9932 (plain)
1
2
3
4
5
class AddRolesAllRolesManaged < ActiveRecord::Migration[4.2]
  def change
    add_column :roles, :all_roles_managed, :boolean, :default => true, :null => false
  end
end