The code powering m.abunchtell.com https://m.abunchtell.com
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

13 righe
477 B

  1. class AddTypeToMediaAttachments < ActiveRecord::Migration[5.0]
  2. def up
  3. add_column :media_attachments, :type, :integer, default: 0, null: false
  4. MediaAttachment.where(file_content_type: MediaAttachment::IMAGE_MIME_TYPES).update_all(type: MediaAttachment.types[:image])
  5. MediaAttachment.where(file_content_type: MediaAttachment::VIDEO_MIME_TYPES).update_all(type: MediaAttachment.types[:video])
  6. end
  7. def down
  8. remove_column :media_attachments, :type
  9. end
  10. end