about summary refs log tree commit diff stats
path: root/db
diff options
context:
space:
mode:
Diffstat (limited to 'db')
-rw-r--r--db/migrate/20170924152817_add_ot_gender_to_pokemon.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20170924152817_add_ot_gender_to_pokemon.rb b/db/migrate/20170924152817_add_ot_gender_to_pokemon.rb new file mode 100644 index 0000000..b5f715c --- /dev/null +++ b/db/migrate/20170924152817_add_ot_gender_to_pokemon.rb
@@ -0,0 +1,5 @@
1class AddOtGenderToPokemon < ActiveRecord::Migration[5.1]
2 def change
3 add_column :pokeviewer_pokemon, :ot_gender, :string, null: false, default: ""
4 end
5end