mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 14:21:10 +00:00
16 lines
237 B
Elixir
16 lines
237 B
Elixir
defmodule Pleroma.Repo.Migrations.LongerBios do
|
|
use Ecto.Migration
|
|
|
|
def up do
|
|
alter table(:users) do
|
|
modify(:bio, :text)
|
|
end
|
|
end
|
|
|
|
def down do
|
|
alter table(:users) do
|
|
modify(:bio, :string)
|
|
end
|
|
end
|
|
end
|