You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cartodb/db/migrate/20151028114700_remove_count...

14 lines
239 B

Sequel.migration do
up do
alter_table :visualizations do
drop_column :country_codes
end
end
down do
SequelRails.connection.run(%{
ALTER TABLE "visualizations" ADD COLUMN country_codes text[]
})
end
end