diff options
author | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2022-09-03 02:16:42 +0000 |
---|---|---|
committer | Haelwenn <contact+git.pleroma.social@hacktivis.me> | 2022-09-03 02:16:42 +0000 |
commit | e40c221c310ace1187d83160329148cfd50a39c7 (patch) | |
tree | 5a3899d9cbd1af49f249e721a2cb044ae20ea6b4 /priv/repo | |
parent | 07ef72f4932494e87af03992e0724c0152811853 (diff) | |
parent | a4fa286d200b4f0c0ac9f453eb3e0a0526560a20 (diff) | |
download | pleroma-e40c221c310ace1187d83160329148cfd50a39c7.tar.gz pleroma-e40c221c310ace1187d83160329148cfd50a39c7.zip |
Merge branch 'from/upstream-develop/tusooa/edits' into 'develop'
Editing
Closes #1429, #2859, and #2288
See merge request pleroma/pleroma!3678
Diffstat (limited to 'priv/repo')
-rw-r--r-- | priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs b/priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs new file mode 100644 index 000000000..0656c885f --- /dev/null +++ b/priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs @@ -0,0 +1,51 @@ +defmodule Pleroma.Repo.Migrations.AddUpdateToNotificationsEnum do + use Ecto.Migration + + @disable_ddl_transaction true + + def up do + """ + alter type notification_type add value 'update' + """ + |> execute() + end + + # 20210717000000_add_poll_to_notifications_enum.exs + def down do + alter table(:notifications) do + modify(:type, :string) + end + + """ + delete from notifications where type = 'update' + """ + |> execute() + + """ + drop type if exists notification_type + """ + |> execute() + + """ + create type notification_type as enum ( + 'follow', + 'follow_request', + 'mention', + 'move', + 'pleroma:emoji_reaction', + 'pleroma:chat_mention', + 'reblog', + 'favourite', + 'pleroma:report', + 'poll' + ) + """ + |> execute() + + """ + alter table notifications + alter column type type notification_type using (type::notification_type) + """ + |> execute() + end +end |