logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma git clone https://hacktivis.me/git/pleroma.git

20191026191218_set_not_null_for_moderation_log.exs (524B)


  1. # Pleroma: A lightweight social networking server
  2. # Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
  3. # SPDX-License-Identifier: AGPL-3.0-only
  4. defmodule Pleroma.Repo.Migrations.SetNotNullForModerationLog do
  5. use Ecto.Migration
  6. # modify/3 function will require index recreation, so using execute/1 instead
  7. def up do
  8. execute("ALTER TABLE moderation_log
  9. ALTER COLUMN data SET NOT NULL")
  10. end
  11. def down do
  12. execute("ALTER TABLE moderation_log
  13. ALTER COLUMN data DROP NOT NULL")
  14. end
  15. end