This repository has been archived on 2020-02-06. You can view files and clone it, but cannot push or open issues/pull-requests.
pleroma/priv/repo/migrations/20170529093232_longer_bios.exs

17 lines
236 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