Add changelog entry for hashtag following
[akkoma] / priv / repo / 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