Update schemas for game updates
Extra weapon slots, Subauras, and limiting weapons in grid.
This commit is contained in:
parent
ce50384be5
commit
68661c02f6
5 changed files with 25 additions and 0 deletions
5
db/migrate/20220112182647_add_extra_to_party.rb
Normal file
5
db/migrate/20220112182647_add_extra_to_party.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddExtraToParty < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :parties, :extra, :boolean, :default => false, :null => false
|
||||
end
|
||||
end
|
||||
5
db/migrate/20220112182710_add_extra_to_weapons.rb
Normal file
5
db/migrate/20220112182710_add_extra_to_weapons.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddExtraToWeapons < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :weapons, :extra, :boolean, :default => false, :null => false
|
||||
end
|
||||
end
|
||||
5
db/migrate/20220115054302_add_subaura_to_summons.rb
Normal file
5
db/migrate/20220115054302_add_subaura_to_summons.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddSubauraToSummons < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :summons, :subaura, :boolean, :default => false, :null => false
|
||||
end
|
||||
end
|
||||
5
db/migrate/20220115060945_add_limits_to_weapons.rb
Normal file
5
db/migrate/20220115060945_add_limits_to_weapons.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddLimitsToWeapons < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :weapons, :limit, :integer
|
||||
end
|
||||
end
|
||||
5
db/migrate/20220115062109_add_limits_to_summons.rb
Normal file
5
db/migrate/20220115062109_add_limits_to_summons.rb
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
class AddLimitsToSummons < ActiveRecord::Migration[6.1]
|
||||
def change
|
||||
add_column :summons, :limit, :integer
|
||||
end
|
||||
end
|
||||
Loading…
Reference in a new issue