1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-27 13:15:32 +01:00
pleroma/priv/repo/migrations/20170529093232_longer_bios.exs
2019-10-08 15:16:39 +03:00

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