fix note image references

This commit is contained in:
Inhji 2023-04-09 16:12:03 +02:00
parent a8f037cff2
commit cf8dd95064

View file

@ -0,0 +1,17 @@
defmodule Chiya.Repo.Migrations.FixNoteImageReference do
use Ecto.Migration
def up do
drop constraint :note_images, "note_images_note_id_fkey"
alter table(:note_images) do
modify :note_id, references(:notes, on_delete: :delete_all)
end
end
def down do
drop constraint :note_images, "note_images_note_id_fkey"
alter table(:note_images) do
modify :note_id, references(:notes, on_delete: :nothing)
end
end
end