* Add recruits column to weapons * Populate recruits column with granblue_ids * Remove recruits_id and index recruits
5 lines
119 B
Ruby
5 lines
119 B
Ruby
class AddIndexToWeaponRecruits < ActiveRecord::Migration[7.0]
|
|
def change
|
|
add_index :weapons, :recruits
|
|
end
|
|
end
|