aboutsummaryrefslogtreecommitdiffstats
path: root/db/migrate/20131028153043_add_bounds_to_referentials.rb
blob: 013852e3f859f7166fc07394178dd57036462efa (plain)
1
2
3
4
5
6
7
class AddBoundsToReferentials < ActiveRecord::Migration
  def change
    change_table :referentials do |t|
      t.text :geographical_bounds
    end
  end
end