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,13 @@
class CreateWowReputationTierLevels < ActiveRecord::Migration[6.1]
def change
create_table :wow_reputation_tier_levels do |t|
t.jsonb :name
t.integer :min_value
t.integer :max_value
t.integer :order
t.belongs_to :wow_reputation_tier
t.timestamps
end
end
end