diff options
| author | lain <lain@soykaf.club> | 2024-08-01 08:53:29 +0000 |
|---|---|---|
| committer | lain <lain@soykaf.club> | 2024-08-01 08:53:29 +0000 |
| commit | 36d469cf022ea66947a73ee4c762d7f459aceee4 (patch) | |
| tree | 5f8824d56f10d1c94353afeb77833cd250e67369 /priv/repo/migrations/20220319000000_add_status_to_notifications_enum.exs | |
| parent | 7566b4a348c66fcea45bcb017979ece9c7b45b3a (diff) | |
| parent | a5d32aab50abf725196fa782775a38907b4b2afa (diff) | |
| download | pleroma-36d469cf022ea66947a73ee4c762d7f459aceee4.tar.gz pleroma-36d469cf022ea66947a73ee4c762d7f459aceee4.zip | |
Merge branch 'release/2.7.0' into 'stable'
v2.7.0
See merge request pleroma/pleroma!4179
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 |
