about summary refs log tree commit diff stats
path: root/db/migrate/20170924152817_add_ot_gender_to_pokemon.rb
blob: b5f715c7ae08abfe7df02296f90c908a371d1a74 (plain) (blame)
1
2
3
4
5
class AddOtGenderToPokemon < ActiveRecord::Migration[5.1]
  def change
    add_column :pokeviewer_pokemon, :ot_gender, :string, null: false, default: ""
  end
end