1
0
Fork 0

Fix: wrong named user func in notes schema

This commit is contained in:
Aroy-Art 2024-09-06 23:00:22 +02:00
parent 728382919b
commit 8b8465e72a
Signed by: Aroy
GPG key ID: DB9689E9391DD156

View file

@ -5,7 +5,7 @@ defmodule NotesApp.Notes.Note do
schema "notes" do
field :title, :string
field :content, :string
belongs_to :user, NotesApp.Users.User
belongs_to :user, NotesApp.Accounts.User
timestamps(type: :utc_datetime)
end