Fakultas Ilmu Komputer UI

Skip to content
Snippets Groups Projects
Commit 7bdf7bd0 authored by Muhammad Rafif Elfazri's avatar Muhammad Rafif Elfazri
Browse files

Merge branch 'rafif-auth' into 'master'

Fix again

See merge request diskuy!77
parents 11d40a1f a45d1e1f
No related branches found
No related tags found
No related merge requests found
......@@ -3,8 +3,8 @@ defmodule Diskuy.Repo.Migrations.CreatePostLikes do
def change do
create table(:post_likes) do
add :user_id, references(:users, on_delete: on_delete: :delete_all)
add :post_id, references(:posts, on_delete: on_delete: :delete_all)
add :user_id, references(:users, on_delete: :delete_all)
add :post_id, references(:posts, on_delete: :delete_all)
timestamps()
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment