mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02:00
b154428e14
* Change ActivityPub follower/following collections to not link first page * Add support for hiding followers and following of remote users * Switch to using a single `hide_collections` column * Address code style remarks
6 lines
143 B
Ruby
6 lines
143 B
Ruby
class AddHideCollectionsToAccounts < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :accounts, :hide_collections, :boolean
|
|
end
|
|
end
|