Files
site/db/migrate/20210423153621_create_user_obtain_wow_mounts.rb

10 lines
216 B
Ruby

class CreateUserObtainWowMounts < ActiveRecord::Migration[6.1]
def change
create_table :user_obtain_wow_mounts do |t|
t.belongs_to :user
t.belongs_to :wow_mount
t.timestamps
end
end
end