mirror of https://github.com/tootsuite/mastodon
14 lines
324 B
Ruby
14 lines
324 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AddImageDescriptionToPreviewCards < ActiveRecord::Migration[7.0]
|
|
disable_ddl_transaction!
|
|
|
|
def up
|
|
safety_assured { add_column :preview_cards, :image_description, :string, default: '', null: false }
|
|
end
|
|
|
|
def down
|
|
remove_column :preview_cards, :image_description
|
|
end
|
|
end
|