Update schemas for game updates

Extra weapon slots, Subauras, and limiting weapons in grid.
This commit is contained in:
Justin Edmund 2022-01-25 16:54:29 -08:00
parent ce50384be5
commit 68661c02f6
5 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,5 @@
class AddExtraToParty < ActiveRecord::Migration[6.1]
def change
add_column :parties, :extra, :boolean, :default => false, :null => false
end
end

View file

@ -0,0 +1,5 @@
class AddExtraToWeapons < ActiveRecord::Migration[6.1]
def change
add_column :weapons, :extra, :boolean, :default => false, :null => false
end
end

View file

@ -0,0 +1,5 @@
class AddSubauraToSummons < ActiveRecord::Migration[6.1]
def change
add_column :summons, :subaura, :boolean, :default => false, :null => false
end
end

View file

@ -0,0 +1,5 @@
class AddLimitsToWeapons < ActiveRecord::Migration[6.1]
def change
add_column :weapons, :limit, :integer
end
end

View file

@ -0,0 +1,5 @@
class AddLimitsToSummons < ActiveRecord::Migration[6.1]
def change
add_column :summons, :limit, :integer
end
end