mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 06:06:05 +01:00
126461942b
Gets rid of '|| ""' in multiple places and fixes #2067
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
|