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
/
20191006123824_add_keys_column.exs
1
defmodule Pleroma.Repo.Migrations.AddKeysColumn do
2
use Ecto.Migration
3
4
def change do
5
alter table("users") do
6
add_if_not_exists(:keys, :text)
7
end
8
end
9
end