hensei-api/db/migrate/20230102233457_add_boolean_ax_to_weapons.rb
Justin Edmund cfe667ac4e Change AX on Weapons to boolean
Moves current column to `ax_type` but we will probably remove it and do series-based matching on the client
2023-01-02 15:57:29 -08:00

5 lines
121 B
Ruby

class AddBooleanAxToWeapons < ActiveRecord::Migration[6.1]
def change
add_column :weapons, :ax, :boolean
end
end