20181228215350_create_pokemon.rb 309 B

1234567891011121314
  1. # frozen_string_literal: true
  2. class CreatePokemon < ActiveRecord::Migration[5.2]
  3. def change
  4. create_table :pokemon do |t|
  5. t.integer :pokedex_number, null: false, unsigned: true
  6. t.string :nickname
  7. t.binary :raw_nickname
  8. t.binary :raw_pokemon
  9. t.timestamps
  10. end
  11. end
  12. end