summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20190818124341_create_moderation_log.exs
blob: cef6636f30fba6b1535937504920c8c674ce1660 (plain)
1
2
3
4
5
6
7
8
9
10
11
defmodule Pleroma.Repo.Migrations.CreateModerationLog do
  use Ecto.Migration

  def change do
    create table(:moderation_log) do
      add(:data, :map)

      timestamps()
    end
  end
end