about summary refs log tree commit diff stats
path: root/db/migrate/20170925013807_create_pokeviewer_locations.rb
blob: ffd4c15c990751c3b4da13db1d8ef72a50b92320 (plain) (blame)
1
2
3
4
5
6
7
8
9
class CreatePokeviewerLocations < ActiveRecord::Migration[5.1]
  def change
    create_table :locations do |t|
      t.string :name, null: false

      t.timestamps
    end
  end
end