cartodb/db/migrate/20150817155219_add_privacy_to_data_import.rb

14 lines
199 B
Ruby
Raw Permalink Normal View History

2020-06-15 10:58:47 +08:00
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