1
0
Fork 0
mirror of https://git.pleroma.social/pleroma/pleroma.git synced 2025-01-13 18:55:25 +00:00
pleroma/priv/repo/migrations/20190818124341_create_moderation_log.exs
2019-08-25 19:39:37 +00:00

11 lines
193 B
Elixir

defmodule Pleroma.Repo.Migrations.CreateModerationLog do
use Ecto.Migration
def change do
create table(:moderation_log) do
add(:data, :map)
timestamps()
end
end
end