Update association_basics.md

This commit is contained in:
Majid Alaeinia 2024-06-05 04:55:01 +03:30 committed by GitHub
parent a6a840f150
commit 5737cf9ce0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -2975,7 +2975,7 @@ Delegated types solves this problem, via `delegated_type`.
In order to use delegated types, we have to model our data in a particular way. The requirements are as follows:
* There is a superclass that stores shared attributes among all subclasses in it's table.
* There is a superclass that stores shared attributes among all subclasses in its table.
* Each subclass must inherit from the super class, and will have a separate table for any additional attributes specific to it.
This eliminates the need to define attributes in a single table that are unintentionally shared among all subclasses.