summaryrefslogtreecommitdiff
path: root/db/migrate/20140329152147_create_pois.rb
blob: a69cfe5fdb06a6f38bb54dca864a094f391d026e (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreatePois < ActiveRecord::Migration
  def change
    create_table :pois do |t|
      t.text :message
      t.decimal :lat
      t.decimal :lon

      t.timestamps
    end
  end
end