diff options
| -rw-r--r-- | assignments/2/README.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/assignments/2/README.md b/assignments/2/README.md index 7689932..82494f9 100644 --- a/assignments/2/README.md +++ b/assignments/2/README.md @@ -49,6 +49,10 @@ Answer the following questions (250 words max/question). on all pages, then it might make sense to de-normalize this data to reduce the need for an INNER JOIN on the two tables to render every screen. + ```text + User(id: integer, username: string, password_digest: string, first_name: string, last_name: string, email: string) + ``` + 2. A many-to-many relationship with nonkey attributes * E.g. 3. Reference data |
