mirror of
https://github.com/fspc/BikeShed-1.git
synced 2025-04-04 05:33:22 -04: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
|