Class: Jobs::ClearWidthAndHeight
- Defined in:
- app/jobs/onceoff/clear_width_and_height.rb
Instance Method Summary collapse
Methods inherited from Onceoff
enqueue_all, #execute, inherited, name_for, onceoff_job_klasses, #running_key_name
Methods inherited from Base
acquire_cluster_concurrency_lock!, clear_cluster_concurrency_lock!, cluster_concurrency, cluster_concurrency_redis_key, delayed_perform, #error_context, #execute, get_cluster_concurrency, #last_db_duration, #log, #perform, #perform_immediately
Instance Method Details
#execute_onceoff(args) ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 |
# File 'app/jobs/onceoff/clear_width_and_height.rb', line 5 def execute_onceoff(args) # we have to clear all old uploads cause # we could have old versions of height / width # this column used to store thumbnail size instead of # actual size DB.exec(<<~SQL) UPDATE uploads SET width = null, height = null WHERE width IS NOT NULL OR height IS NOT NULL SQL end |