blob: 8ad7f77b430d7238ae82eb840284ae151c1bba2a (
plain) (
blame)
1
2
3
4
5
6
|
# This migration comes from pokeviewer (originally 20170924152817)
class AddOtGenderToPokemon < ActiveRecord::Migration[5.1]
def change
add_column :pokeviewer_pokemon, :ot_gender, :string, null: false, default: ""
end
end
|