You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
341 B

  1. class AddThumbnailColumnsToMediaAttachments < ActiveRecord::Migration[5.2]
  2. def up
  3. add_attachment :media_attachments, :thumbnail
  4. add_column :media_attachments, :thumbnail_remote_url, :string
  5. end
  6. def down
  7. remove_attachment :media_attachments, :thumbnail
  8. remove_column :media_attachments, :thumbnail_remote_url
  9. end
  10. end