add everything to manage reputations
This commit is contained in:
15
db/migrate/20210430165156_create_wow_standings.rb
Normal file
15
db/migrate/20210430165156_create_wow_standings.rb
Normal 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
|
||||
Reference in New Issue
Block a user