Files
site/db/migrate/20210530135651_create_wow_covenant_progresses.rb
2021-05-30 17:49:54 +02:00

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