diff options
| author | Lain Soykaf <lain@lain.com> | 2024-05-27 20:03:14 +0400 |
|---|---|---|
| committer | Lain Soykaf <lain@lain.com> | 2024-05-27 20:03:14 +0400 |
| commit | f4c0a01f097ec9d6d61dff3abfcda616b23e01e6 (patch) | |
| tree | e821106c60e3180005be5add7a18dbe569171a74 /priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs | |
| parent | 197647a04e66c1af3ae691a4507612fdbee9c48c (diff) | |
| parent | 7798fdc71121459f479e0729fefdac195b1dca7d (diff) | |
| download | pleroma-f4c0a01f097ec9d6d61dff3abfcda616b23e01e6.tar.gz pleroma-f4c0a01f097ec9d6d61dff3abfcda616b23e01e6.zip | |
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into image-description-summary
Diffstat (limited to 'priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs')
| -rw-r--r-- | priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs | 51 |
1 files changed, 51 insertions, 0 deletions
diff --git a/priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs b/priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs new file mode 100644 index 000000000..c3bc85894 --- /dev/null +++ b/priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs @@ -0,0 +1,51 @@ +defmodule Pleroma.Repo.Migrations.AddStatusToNotificationsEnum do + use Ecto.Migration + + @disable_ddl_transaction true + + def up do + """ + alter type notification_type add value 'status' + """ + |> execute() + end + + def down do + alter table(:notifications) do + modify(:type, :string) + end + + """ + delete from notifications where type = 'status' + """ + |> 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', + 'update' + ) + """ + |> execute() + + """ + alter table notifications + alter column type type notification_type using (type::notification_type) + """ + |> execute() + end +end |
