Add option to modify HTTP pool size
[akkoma] / priv / repo / migrations / 20190818124341_create_moderation_log.exs
1 defmodule Pleroma.Repo.Migrations.CreateModerationLog do
2 use Ecto.Migration
3
4 def change do
5 create table(:moderation_log) do
6 add(:data, :map)
7
8 timestamps()
9 end
10 end
11 end