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

16 lines
237 B
Elixir
Raw Normal View History

2017-05-29 10:33:40 +01:00
defmodule Pleroma.Repo.Migrations.LongerBios do
use Ecto.Migration
2019-07-01 02:08:07 +01:00
def up do
2017-05-29 10:33:40 +01:00
alter table(:users) do
2019-10-08 13:16:39 +01:00
modify(:bio, :text)
2017-05-29 10:33:40 +01:00
end
end
2019-07-01 02:08:07 +01:00
def down do
alter table(:users) do
2019-10-08 13:16:39 +01:00
modify(:bio, :string)
2019-07-01 02:08:07 +01:00
end
end
2017-05-29 10:33:40 +01:00
end