1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-12-25 04:53:06 +00:00
akkoma/priv/repo/migrations/20170529093232_longer_bios.exs
2019-07-01 01:08:07 +00:00

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