about summary refs log tree commit diff stats
path: root/db/migrate/20171015171548_create_pokeviewer_locations.pokeviewer.rb
blob: c5589b0a6ec46a8eba08425c65b9bae7b5fecca3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# This migration comes from pokeviewer (originally 20170925013807)
class CreatePokeviewerLocations < ActiveRecord::Migration[5.1]
  def change
    create_table :pokeviewer_locations do |t|
      t.string :name, null: false

      t.timestamps
    end
  end
end