10 lines
216 B
Ruby
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
|