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
/
20170529093232_longer_bios.exs
1
defmodule Pleroma.Repo.Migrations.LongerBios do
2
use Ecto.Migration
3
4
def up do
5
alter table(:users) do
6
modify(:bio, :text)
7
end
8
end
9
10
def down do
11
alter table(:users) do
12
modify(:bio, :string)
13
end
14
end
15
end