diff options
| author | mo khan <mo.khan@gmail.com> | 2020-01-31 11:10:37 -0700 |
|---|---|---|
| committer | mo khan <mo.khan@gmail.com> | 2020-01-31 11:10:37 -0700 |
| commit | 8b55e7d51cf0cc9c93902899dd92f02ffde3a503 (patch) | |
| tree | 32364c5600d4a0a9d5ca2ea3506dd1c981797823 | |
| parent | f438a3367cd6faccc83242a922c6b109043abea4 (diff) | |
Provide example of the denormalized form
| -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 |
