mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-02-08 23:32:23 +00:00
7 lines
166 B
Elixir
7 lines
166 B
Elixir
defmodule Pleroma.Repo.Migrations.EnsureBioIsString do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
execute("update users set bio = '' where bio is null", "")
|
|
end
|
|
end
|