mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2024-11-14 04:52:17 +00:00
9 lines
172 B
Elixir
9 lines
172 B
Elixir
defmodule Pleroma.Repo.Migrations.UserRawBio do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
alter table(:users) do
|
|
add_if_not_exists(:raw_bio, :text)
|
|
end
|
|
end
|
|
end
|