summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20170529093232_longer_bios.exs
blob: f8c14b1175ca44d891af06a2ef59a4cedaed25bd (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.LongerBios do
  use Ecto.Migration

  def change do
    alter table(:users) do
      modify :bio, :text
    end
  end
end