cartodb/db/migrate/20120914162229_add_view_bounds_to_maps.rb

9 lines
155 B
Ruby
Raw Normal View History

2020-06-15 10:58:47 +08:00
Sequel.migration do
change do
alter_table :maps do
add_column :view_bounds_sw, :text
add_column :view_bounds_ne, :text
end
end
end