Merge pull request #52023 from majidalaeinia/main

Resolve Typo
This commit is contained in:
Vipul A M 2024-06-05 16:54:25 +05:30 committed by GitHub
commit c628f77112
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -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.