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.
 
 
 
 

14 lines
422 B

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