ddf9be4f527aef2e25a5906c966c7c501a6e7803
[akkoma] / migrations / 20200322174133_user_raw_bio.exs
1 defmodule Pleroma.Repo.Migrations.UserRawBio do
2 use Ecto.Migration
3
4 def change do
5 alter table(:users) do
6 add_if_not_exists(:raw_bio, :text)
7 end
8 end
9 end