mirror of
https://git.youjo.love/youjo/youjo-be.git
synced 2024-11-20 13:59:55 +01:00
126461942b
Gets rid of '|| ""' in multiple places and fixes #2067
10 lines
232 B
Elixir
10 lines
232 B
Elixir
defmodule Pleroma.Repo.Migrations.BioSetNotNull do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
execute(
|
|
"alter table users alter column bio set not null",
|
|
"alter table users alter column bio drop not null"
|
|
)
|
|
end
|
|
end
|