cartodb-4.42/db/migrate/20160928095559_add_options_to_map.rb

16 lines
231 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +08:00
Sequel.migration do
up do
alter_table :maps do
add_column :options,
:string,
type: 'json'
end
end
down do
alter_table :maps do
drop_column :options
end
end
end