Approach #2: Use an Abstract Schema
Learn how to implement polymorphism in Ecto using separate tables, and one abstract schema.
Create separate notes tables
This approach might not be entirely intuitive at first glance, but it’s worth exploring as it reveals some interesting features about schemas that we haven’t looked at before. It might also be the right solution for our application.
With this approach, we’ll create separate notes
tables for each of the other tables we’re associating with. We’ll have one notes table for artists, another for albums, and so on. Here’s how we might write the migration:
create table(:notes_for_artists) doadd :note, :text, null: falseadd :author, :string, null: falseadd :assoc_id, references(:artists)timestamps()endcreate table(:notes_for_albums) doadd :note, :text, null: falseadd :author, :string, null: falseadd :assoc_id, references(:albums)timestamps()endcreate table(:notes_for_tracks) doadd :note, :text, null: falseadd :author, :string, null: falseadd :assoc_id, references(:tracks)timestamps()end
Notice that we used assoc_id
for the foreign key. We deliberately chose a more abstract name and used it in each of the tables. We did this so all of the tables have the same column names. This allows us to create a ...