Merge branch 'develop' of https://git.pleroma.social/pleroma/pleroma into develop
[akkoma] / priv / repo / migrations / 20200901061256_ensure_bio_is_string.exs
1 defmodule Pleroma.Repo.Migrations.EnsureBioIsString do
2 use Ecto.Migration
3
4 def change do
5 execute("update users set bio = '' where bio is null", "")
6 end
7 end