cef6636f30fba6b1535937504920c8c674ce1660
[akkoma] / 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