cartodb-4.42/db/migrate/20140721133136_add_legends_to_maps.rb
2024-04-06 05:25:13 +00: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