1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-23 22:26:49 +00:00
akkoma/priv/repo/migrations/20190126160540_change_push_subscriptions_varchar.exs

16 lines
296 B
Elixir
Raw Normal View History

defmodule Pleroma.Repo.Migrations.ChangePushSubscriptionsVarchar do
use Ecto.Migration
2019-07-01 01:08:07 +00:00
def up do
alter table(:push_subscriptions) do
modify(:endpoint, :varchar)
end
end
2019-07-01 01:08:07 +00:00
def down do
alter table(:push_subscriptions) do
modify(:endpoint, :string)
end
end
end