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

14 lines
199 B
Ruby

Sequel.migration do
up do
alter_table :data_imports do
add_column :privacy, Integer
end
end
down do
alter_table :data_imports do
drop_column :privacy
end
end
end