summaryrefslogtreecommitdiff
path: root/priv/repo/migrations/20200914105800_add_notification_constraints.exs
diff options
context:
space:
mode:
authorMaksim Pechnikov <parallel588@gmail.com>2020-09-14 14:08:12 +0300
committerMaksim Pechnikov <parallel588@gmail.com>2020-09-14 14:08:12 +0300
commit3e53ab4e98e6294f593f2185998f555ccd6fee73 (patch)
treed458582b96dcfe7050e992e3bc601e97dd14231f /priv/repo/migrations/20200914105800_add_notification_constraints.exs
parent2937e3095ab9208b2aea1f42792ab99b1b4252d7 (diff)
downloadpleroma-3e53ab4e98e6294f593f2185998f555ccd6fee73.tar.gz
pleroma-3e53ab4e98e6294f593f2185998f555ccd6fee73.zip
added notification constraints
Diffstat (limited to 'priv/repo/migrations/20200914105800_add_notification_constraints.exs')
-rw-r--r--priv/repo/migrations/20200914105800_add_notification_constraints.exs23
1 files changed, 23 insertions, 0 deletions
diff --git a/priv/repo/migrations/20200914105800_add_notification_constraints.exs b/priv/repo/migrations/20200914105800_add_notification_constraints.exs
new file mode 100644
index 000000000..a65c35fd0
--- /dev/null
+++ b/priv/repo/migrations/20200914105800_add_notification_constraints.exs
@@ -0,0 +1,23 @@
+defmodule Pleroma.Repo.Migrations.AddNotificationConstraints do
+ use Ecto.Migration
+
+ def up do
+ drop(constraint(:notifications, "notifications_activity_id_fkey"))
+
+ alter table(:notifications) do
+ modify(:activity_id, references(:activities, type: :uuid, on_delete: :delete_all),
+ null: false
+ )
+ end
+ end
+
+ def down do
+ drop(constraint(:notifications, "notifications_activity_id_fkey"))
+
+ alter table(:notifications) do
+ modify(:activity_id, references(:activities, type: :uuid, on_delete: :delete_all),
+ null: true
+ )
+ end
+ end
+end