X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/03eda9714a04408f060151c861e7b28742ef9227..8a2db368f194686bd6a0bcfe1b7e13c58c0588fa:/db/migrate/006_create_segments.rb diff --git a/db/migrate/006_create_segments.rb b/db/migrate/006_create_segments.rb new file mode 100644 index 000000000..20c9efaf1 --- /dev/null +++ b/db/migrate/006_create_segments.rb @@ -0,0 +1,11 @@ +class CreateSegments < ActiveRecord::Migration + def self.up + create_table :segments do |t| + # t.column :name, :string + end + end + + def self.down + drop_table :segments + end +end