mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00: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
|