1
0
Fork 0
mirror of https://github.com/mastodon/mastodon.git synced 2024-08-20 21:08:15 -07:00
mastodon/db/migrate/20230725213448_add_image_description_to_preview_cards.rb

13 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