12 lines
263 B
Ruby
12 lines
263 B
Ruby
class CreateWowCovenantProgresses < ActiveRecord::Migration[6.1]
|
|
def change
|
|
create_table :wow_covenant_progresses do |t|
|
|
t.integer :renown_level
|
|
t.belongs_to :wow_characters
|
|
t.belongs_to :wow_covenant
|
|
|
|
t.timestamps
|
|
end
|
|
end
|
|
end
|