cartodb-4.42/db/migrate/20150817155219_add_privacy_to_data_import.rb

14 lines
199 B
Ruby
Raw Normal View History

2024-04-06 13:25:13 +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