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

      t.timestamps
    end
  end
end