summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2024-05-21 05:01:45 +0000
committerlain <lain@soykaf.club>2024-05-21 05:01:45 +0000
commit7fca5982686e9da2ef449af65b6ec2602a3c9f69 (patch)
treea1f2c66df8dcb666d008a54e57b5b2cf7015c126 /priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs
parente8cd6662eb2a534e3be16b522bf81b25b194edab (diff)
parent36fa0debfe66d3b706eeaa09227edd8b82c70aba (diff)
downloadpleroma-7fca5982686e9da2ef449af65b6ec2602a3c9f69.tar.gz
pleroma-7fca5982686e9da2ef449af65b6ec2602a3c9f69.zip
Merge branch 'status-notification-type' into 'develop'
Add "status" notification type See merge request pleroma/pleroma!3659
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.exs51
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