Sha256: 56d0f68837ff0b18397af36ec6fb86bd82bc52a6e0f3da3f1baeb129424fbdb4

Contents?: true

Size: 1.21 KB

Versions: 38

Compression:

Stored size: 1.21 KB

Contents

class CopyFileAttributesOfFailedUploads < ActiveRecord::Migration[5.2]
  def up
    %w(audio text_track video).each do |uploadable_file_type|
      execute("UPDATE pageflow_#{uploadable_file_type}_files hf
                   SET hf.attachment_on_s3_file_name = hf.attachment_on_filesystem_file_name,
                       hf.attachment_on_s3_content_type = hf.attachment_on_filesystem_content_type,
                       hf.attachment_on_s3_file_size = hf.attachment_on_filesystem_file_size,
                       hf.attachment_on_s3_updated_at = hf.attachment_on_filesystem_updated_at,
                       hf.state = 'uploading_failed'
                   WHERE hf.state = 'uploading_to_s3_failed';")
    end
  end

  def down
    %w(audio text_track video).each do |uploadable_file_type|
      execute("UPDATE pageflow_#{uploadable_file_type}_files hf
                   SET hf.attachment_on_s3_file_name = NULL,
                       hf.attachment_on_s3_content_type = NULL,
                       hf.attachment_on_s3_file_size = NULL,
                       hf.attachment_on_s3_updated_at = NULL,
                       hf.state = 'uploading_to_s3_failed'
                   WHERE hf.state = 'uploading_failed';")
    end
  end
end

Version data entries

38 entries across 38 versions & 1 rubygems

Version Path
pageflow-17.0.4 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-17.0.3 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-17.0.2 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-17.0.1 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-17.0.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-16.2.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-16.1.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-16.0.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.8.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.7.1 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.7.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.6.1 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.6.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.5.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.4.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.3.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.2.2 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.2.1 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.2.0 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb
pageflow-15.1.2 db/migrate/20190306161431_copy_file_attributes_of_failed_uploads.rb