1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-25 23:09:21 +00:00
mastodon/db/migrate/20170927215609_add_description_to_media_attachments.rb

5 lines
148 B
Ruby

class AddDescriptionToMediaAttachments < ActiveRecord::Migration[5.2]
def change
add_column :media_attachments, :description, :text
end
end