1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-18 10:59:17 +00:00
akkoma/priv/repo/migrations/20170529093232_longer_bios.exs
2017-05-29 11:33:40 +02:00

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