projects
/
akkoma
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
normalise markup by default (#316)
[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