mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-24 21:53:59 +01:00
11 lines
232 B
Elixir
11 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
|