mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-22 10:16:22 +00:00
feat: eliminar más actores
This commit is contained in:
parent
b0b8e6877e
commit
2370cf7310
1 changed files with 13 additions and 0 deletions
13
db/migrate/20240307203039_remove_actor_moderations2.rb
Normal file
13
db/migrate/20240307203039_remove_actor_moderations2.rb
Normal file
|
@ -0,0 +1,13 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
# Algunes quedaron como genéricxs
|
||||
class RemoveActorModerations2 < ActiveRecord::Migration[6.1]
|
||||
def up
|
||||
actor_uris = ActivityPub::Activity.where(type: 'ActivityPub::Activity::Delete').distinct.pluck(Arel.sql("content->>'object'"))
|
||||
actor_ids = ActivityPub::Actor.where(uri: actor_uris).ids
|
||||
|
||||
ActorModeration.where(actor_id: actor_ids).remove_all!
|
||||
end
|
||||
|
||||
def down; end
|
||||
end
|
Loading…
Reference in a new issue