10 lines
210 B
Ruby
10 lines
210 B
Ruby
class CreateUserObtainWowPets < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :user_obtain_wow_pets do |t|
|
|
t.belongs_to :user
|
|
t.belongs_to :wow_pet
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|