Renamed UserRoles to UserRole Joins, Needed ID column in user_role_joins table

This commit is contained in:
Jason Denney
2013-04-24 07:56:02 -04:00
parent 91bb2ea43e
commit a083ed715b
5 changed files with 6 additions and 8 deletions
@@ -3,7 +3,6 @@ class AlterUserRoles < ActiveRecord::Migration
rename_table :user_roles, :user_role_joins
change_table :user_role_joins do |t|
t.rename :role, :role_id
t.remove :id
end
end
end