WIP adding user roles view; adding end datetime to user roles

This commit is contained in:
John N. Milner
2013-04-18 22:16:13 -04:00
parent ac9e5718c7
commit a3fcdec10c
10 changed files with 62 additions and 17 deletions
@@ -0,0 +1,7 @@
class AddEndsToUserRoles < ActiveRecord::Migration
def change
add_column(:user_roles, :ends, :timestamp)
add_column(:user_roles, :user_id, :integer)
remove_column(:users, :role_id)
end
end