mirror of
https://github.com/fspc/BikeShed-1.git
synced 2026-01-07 09:15:35 -05:00
10 lines
231 B
Ruby
10 lines
231 B
Ruby
class AlterUserRoles < ActiveRecord::Migration
|
|
def change
|
|
rename_table :user_roles, :user_role_joins
|
|
change_table :user_role_joins do |t|
|
|
t.rename :role, :role_id
|
|
t.change :role_id, :integer
|
|
end
|
|
end
|
|
end
|