This repository has been archived on 2024-06-09. You can view files and clone it, but cannot push or open issues/pull-requests.
2017-12-07 03:37:43 +01:00
|
|
|
require Rails.root.join('lib', 'mastodon', 'migration_helpers')
|
|
|
|
|
2023-03-27 16:09:10 +02:00
|
|
|
class AddEmbedURLToPreviewCards < ActiveRecord::Migration[5.2]
|
2017-12-07 03:37:43 +01:00
|
|
|
include Mastodon::MigrationHelpers
|
|
|
|
|
|
|
|
disable_ddl_transaction!
|
|
|
|
|
|
|
|
def up
|
|
|
|
safety_assured do
|
|
|
|
add_column_with_default :preview_cards, :embed_url, :string, default: '', allow_null: false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def down
|
|
|
|
execute "UPDATE preview_cards SET url=embed_url WHERE embed_url!=''"
|
|
|
|
remove_column :preview_cards, :embed_url
|
|
|
|
end
|
|
|
|
end
|