Files
site/db/migrate/20210430165156_create_wow_standings.rb

16 lines
322 B
Ruby

class CreateWowStandings < ActiveRecord::Migration[6.1]
def change
create_table :wow_standings do |t|
t.belongs_to :wow_character
t.belongs_to :wow_reputation
t.integer :raw
t.integer :value
t.integer :max
t.integer :tier
t.jsonb :name
t.timestamps
end
end
end