blob: 84365dbe339f3b6316d0631cc6dafffc5c398358 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
 | defmodule Pleroma.Repo.Migrations.DataMigrationDeleteContextObjects do
  use Ecto.Migration
  require Logger
  def up do
    dt = NaiveDateTime.utc_now()
    execute(
      "INSERT INTO data_migrations(name, inserted_at, updated_at) " <>
        "VALUES ('delete_context_objects', '#{dt}', '#{dt}') ON CONFLICT DO NOTHING;"
    )
  end
  def down do
    execute("DELETE FROM data_migrations WHERE name = 'delete_context_objects';")
  end
end
 |