e3a67d4e7244bc50a20da5cc265d6e8de8ac5d25
[akkoma] / migrations / 20200901061637_bio_set_not_null.exs
1 defmodule Pleroma.Repo.Migrations.BioSetNotNull do
2 use Ecto.Migration
3
4 def change do
5 execute(
6 "alter table users alter column bio set not null",
7 "alter table users alter column bio drop not null"
8 )
9 end
10 end