cartodb/db/migrate/20140429104839_add_tooltip_to_layer.rb

8 lines
110 B
Ruby
Raw Permalink Normal View History

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