]> git.openstreetmap.org Git - rails.git/blob - db/migrate/006_create_segments.rb
20c9efaf1d3e1c4ca8309a23a978cd7f4311b2f1
[rails.git] / db / migrate / 006_create_segments.rb
1 class CreateSegments < ActiveRecord::Migration
2   def self.up
3     create_table :segments do |t|
4       # t.column :name, :string
5     end
6   end
7
8   def self.down
9     drop_table :segments
10   end
11 end