mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-05 16:13:12 +00:00
10 lines
156 B
Elixir
10 lines
156 B
Elixir
|
defmodule Pleroma.Repo.Migrations.LongerBios do
|
||
|
use Ecto.Migration
|
||
|
|
||
|
def change do
|
||
|
alter table(:users) do
|
||
|
modify :bio, :text
|
||
|
end
|
||
|
end
|
||
|
end
|