forked from AkkomaGang/akkoma
20 lines
320 B
Elixir
20 lines
320 B
Elixir
|
defmodule Pleroma.Repo.Migrations.OnlyExpireCreates do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def up do
|
||
|
statement = """
|
||
|
DELETE FROM
|
||
|
activity_expirations A USING activities B
|
||
|
WHERE
|
||
|
A.activity_id = B.id
|
||
|
AND B.data->>'type' != 'Create';
|
||
|
"""
|
||
|
|
||
|
execute(statement)
|
||
|
end
|
||
|
|
||
|
def down do
|
||
|
:ok
|
||
|
end
|
||
|
end
|