mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
9110db41c5
* Federate pinned statuses over ActivityPub * Display pinned toots in web UI Fix #6117 * Fix migration * Fix tests * Update outbox_serializer.rb * Update remove_serializer.rb * Update add_serializer.rb * Update fetch_featured_collection_service.rb
6 lines
155 B
Ruby
6 lines
155 B
Ruby
class AddFeaturedCollectionUrlToAccounts < ActiveRecord::Migration[5.1]
|
|
def change
|
|
add_column :accounts, :featured_collection_url, :string
|
|
end
|
|
end
|