diff --git a/priv/repo/migrations/20170529093232_longer_bios.exs b/priv/repo/migrations/20170529093232_longer_bios.exs new file mode 100644 index 000000000..f8c14b117 --- /dev/null +++ b/priv/repo/migrations/20170529093232_longer_bios.exs @@ -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