Removed is_admin from users

This commit is contained in:
2013-01-28 01:56:28 -05:00
parent bce916412f
commit 29cf04b6cd
2 changed files with 9 additions and 2 deletions

View File

@@ -0,0 +1,8 @@
class RemoveIsAdminFromUsers < ActiveRecord::Migration
def up
remove_column :users, :is_admin
end
def down
end
end