cartodb/db/migrate/20160928095559_add_options_to_map.rb
2020-06-15 10:58:47 +08:00

16 lines
231 B
Ruby

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