about summary refs log tree commit diff
path: root/db/migrate/20170105224407_add_shortcode_to_media_attachments.rb
blob: fba46a4b63b3510e788265d3a277a4026027caad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class AddShortcodeToMediaAttachments < ActiveRecord::Migration[5.0]
  def up
    add_column :media_attachments, :shortcode, :string, null: true, default: nil
    add_index :media_attachments, :shortcode, unique: true

    # Migrate old links
    MediaAttachment.local.update_all('shortcode = id')
  end

  def down
    remove_index :media_attachments, :shortcode
    remove_column :media_attachments, :shortcode
  end
end