mirror of
https://github.com/jtomchak/akkoma.git
synced 2025-01-19 14:16:05 +01: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
|