1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-09 08:28:49 +00:00
mastodon/db/migrate/20170425131920_add_media_attachment_meta.rb

8 lines
167 B
Ruby

# frozen_string_literal: true
class AddMediaAttachmentMeta < ActiveRecord::Migration[5.0]
def change
add_column :media_attachments, :file_meta, :json
end
end