summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200322174133_user_raw_bio.exs
blob: ddf9be4f527aef2e25a5906c966c7c501a6e7803 (plain)
1
2
3
4
5
6
7
8
9
defmodule Pleroma.Repo.Migrations.UserRawBio do
  use Ecto.Migration

  def change do
    alter table(:users) do
      add_if_not_exists(:raw_bio, :text)
    end
  end
end