summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorLain Soykaf <lain@lain.com>2024-05-22 20:07:43 +0400
committerLain Soykaf <lain@lain.com>2024-05-22 20:07:43 +0400
commitf726e5fbbdab89dd2a8cb498112ed6866047d3d1 (patch)
treee79aad09f0c248e8cba2d90cbe43fcdb59d01132 /priv
parent1b4f1db9b2990f725a06f0dff41980c51853c5e9 (diff)
parent05b9805bf98ddfc6a0ecf72b778182eb7af169e2 (diff)
downloadpleroma-f726e5fbbdab89dd2a8cb498112ed6866047d3d1.tar.gz
pleroma-f726e5fbbdab89dd2a8cb498112ed6866047d3d1.zip
Merge branch 'develop' of git.pleroma.social:pleroma/pleroma into qdrant-search-2
Diffstat (limited to 'priv')
-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