summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200606105430_change_type_to_enum_for_notifications.exs
blob: 9ea34436b0313639f5de0148a75603a42933c2a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
defmodule Pleroma.Repo.Migrations.ChangeTypeToEnumForNotifications do
  use Ecto.Migration

  def up do
    """
    create type notification_type as enum (
      'follow',
      'follow_request',
      'mention',
      'move',
      'pleroma:emoji_reaction',
      'pleroma:chat_mention',
      'reblog',
      'favourite'
    )
    """
    |> execute()

    """
    alter table notifications 
    alter column type type notification_type using (type::notification_type)
    """
    |> execute()
  end

  def down do
    alter table(:notifications) do
      modify(:type, :string)
    end

    """
    drop type notification_type
    """
    |> execute()
  end
end