Skip to content

Commit

Permalink
docs: removed tables that were old
Browse files Browse the repository at this point in the history
  • Loading branch information
BeauBouchard committed Oct 10, 2023
1 parent d0201c1 commit 8b3ed83
Showing 1 changed file with 0 additions and 52 deletions.
52 changes: 0 additions & 52 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,57 +85,5 @@ Preference (SMS Notifications) An additional preference could be added to the ne

The datastructure is as follows:

```
User
| user_id | email | created_at | updated_at |
|---------|----------------|------------|------------|
| 1 | [email protected] | 2020-01-01 | 2020-01-01 |
Subscription
| subscription_id | name | created_at | updated_at |
|-----------------|--------------------------|------------|------------|
| 1 | Garden Club Subscription | 2020-01-01 | 2020-01-01 |
Preference
| preference_id | name | created_at | updated_at |
|---------------|-------------------------|------------|------------|
| 1 | news letter preferences | 2020-01-01 | 2020-01-01 |
Option
| option_id | name | description | active | created_at | updated_at |
|-----------|--------------------|------------------------------------------------|--------|------------|------------|
| 1 | recieve newsletter | Do you want to recieve the news letter? | true | 2020-01-01 | 2020-01-01 |
User_Subscription
| user_id | subscription_id | state | created_at | updated_at |
|---------|-----------------|---------|------------|------------|
| 1 | 1 | active | 2020-01-01 | 2020-01-01 |
Subscription_Preference
| subscription_id | preference_id | created_at | updated_at |
|-----------------|---------------|------------|------------|
| 1 | 1 | 2020-01-01 | 2020-01-01 |
Preference_Option
| preference_id | option_id | created_at | updated_at |
|---------------|-----------|------------|------------|
| 1 | 1 | 2020-01-01 | 2020-01-01 |
User_Subscription_Preference_Option
| user_id | subscription_id | preference_id | option_id | created_at | updated_at |
|---------|-----------------|---------------|-----------|------------|------------|
| 1 | 1 | 1 | 1 | 2020-01-01 | 2020-01-01 |
```



0 comments on commit 8b3ed83

Please sign in to comment.