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/20141007100712_add_arcgis_d...

10 lines
166 B

Sequel.migration do
up do
add_column :users, :arcgis_datasource_enabled, :boolean
end
down do
drop_column :users, :arcgis_datasource_enabled
end
end