add everything to manage reputations

This commit is contained in:
2021-05-01 00:22:15 +02:00
parent ca80fd55fa
commit d227cdc87c
30 changed files with 366 additions and 43 deletions

View File

@@ -0,0 +1,15 @@
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