cartodb-4.42/db/migrate/20140721133136_add_legends_to_maps.rb

10 lines
143 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
up do
add_column :maps, :legends, :bool, :default => true
end
down do
drop_column :maps, :legends
end
end