2023-07-12 09:47:08 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-01-06 00:21:12 +01:00
|
|
|
class AddShortcodeToMediaAttachments < ActiveRecord::Migration[5.0]
|
2023-08-09 11:26:42 +02:00
|
|
|
class MigrationMediaAttachment < ApplicationRecord
|
|
|
|
self.table_name = :media_attachments
|
|
|
|
scope :local, -> { where(remote_url: '') }
|
|
|
|
end
|
|
|
|
|
2017-01-06 00:21:12 +01:00
|
|
|
def up
|
|
|
|
add_column :media_attachments, :shortcode, :string, null: true, default: nil
|
|
|
|
add_index :media_attachments, :shortcode, unique: true
|
|
|
|
|
2023-08-09 11:26:42 +02:00
|
|
|
MigrationMediaAttachment.reset_column_information
|
|
|
|
|
2017-01-06 00:21:12 +01:00
|
|
|
# Migrate old links
|
2023-08-09 11:26:42 +02:00
|
|
|
MigrationMediaAttachment.local.update_all('shortcode = id')
|
2017-01-06 00:21:12 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
2018-10-04 17:38:04 +02:00
|
|
|
remove_index :media_attachments, :shortcode
|
|
|
|
remove_column :media_attachments, :shortcode
|
2017-01-06 00:21:12 +01:00
|
|
|
end
|
|
|
|
end
|