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