Lock down the controllers

This commit is contained in:
Martin Lensment 2014-12-19 13:45:17 +02:00
parent 3045c08b3e
commit 3b1e632ab7
36 changed files with 166 additions and 97 deletions

View file

@ -0,0 +1,12 @@
class PopulateRoles < ActiveRecord::Migration
def change
rename_column :roles, :name, :code
remove_column :users, :admin, :boolean
Role.create(code: 'admin')
Role.create(code: 'user')
Role.create(code: 'customer_service')
User.update_all(role_id: Role.first.id)
end
end