cartodb-4.29/db/migrate/20140721133136_add_legends_to_maps.rb
2020-06-15 10:58:47 +08:00

10 lines
143 B
Ruby

Sequel.migration do
up do
add_column :maps, :legends, :bool, :default => true
end
down do
drop_column :maps, :legends
end
end