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