10 lines
231 B
Ruby
10 lines
231 B
Ruby
class CreateLearnedWowPetAbilities < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :learned_wow_pet_abilities do |t|
|
|
t.belongs_to :wow_pet
|
|
t.belongs_to :wow_pet_ability
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|