mastodon/db/migrate/20190522060919_make_private...

6 lines
147 B
Ruby

class MakePrivateTagsUnlisted < ActiveRecord::Migration[5.2]
def up
Tag.where(private: true).in_batches.update_all(unlisted: true)
end
end