aboutsummaryrefslogtreecommitdiff
path: root/priv/repo
diff options
context:
space:
mode:
authorTusooa Zhu <tusooa@kazv.moe>2022-06-05 15:02:25 -0400
committerTusooa Zhu <tusooa@kazv.moe>2022-06-05 15:02:25 -0400
commit06a3998013aca1f74c563d261d050543056c1255 (patch)
tree8ad8918e023afb5526e9af0b26bfaf8528b54b47 /priv/repo
parent97eabb20473d962065cb32782737ee10c794617b (diff)
downloadpleroma-06a3998013aca1f74c563d261d050543056c1255.tar.gz
Create Update notifications
Diffstat (limited to 'priv/repo')
-rw-r--r--priv/repo/migrations/20220605185734_add_update_to_notifications_enum.exs51
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