Make longer bios possible.

This commit is contained in:
Roger Braun 2017-05-29 11:33:40 +02:00
parent bdcf42180f
commit fb78773112
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
defmodule Pleroma.Repo.Migrations.LongerBios do
use Ecto.Migration
def change do
alter table(:users) do
modify :bio, :text
end
end
end