summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200901061256_ensure_bio_is_string.exs
blob: 0e3bb3c8108be50825e953b677ba272a663a7127 (plain)
1
2
3
4
5
6
7
defmodule Pleroma.Repo.Migrations.EnsureBioIsString do
  use Ecto.Migration

  def change do
    execute("update users set bio = '' where bio is null", "")
  end
end