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

10 lines
158 B
Ruby

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