-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3ccb0e3
commit 9314633
Showing
52 changed files
with
36 additions
and
847 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# Web Dev Lab | ||
|
||
### Database Modeling | ||
- Articles Table: | ||
- article_id (Primary Key) | ||
- title | ||
- content | ||
- publication_date | ||
- author_id (Foreign Key referencing the Authors Table) | ||
- category_id (Foreign Key referencing the Categories Table) | ||
|
||
- Authors Table: | ||
- author_id (Primary Key) | ||
- name | ||
- bio | ||
|
||
- Comments Table: | ||
- comment_id (Primary Key) | ||
- article_id (Foreign Key referencing the Articles Table) | ||
- author_name | ||
- comment_text | ||
- comment_date | ||
|
||
- Categories Table: | ||
- category_id (Primary Key) | ||
- name | ||
|
||
- Tags Table: | ||
- tag_id (Primary Key) | ||
- name | ||
|
||
- ArticleTags Table (a junction table to implement many-to-many relationship between Articles and Tags): | ||
- article_id (Foreign Key referencing the Articles Table) | ||
- tag_id (Foreign Key referencing the Tags Table) |
Empty file.
Binary file removed
BIN
-174 Bytes
coursetutorials/coursetutorials/__pycache__/__init__.cpython-38.pyc
Binary file not shown.
Binary file removed
BIN
-2.56 KB
coursetutorials/coursetutorials/__pycache__/settings.cpython-38.pyc
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Empty file.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
coursetutorials/tutorials/migrations/0002_alter_tutorial_series.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.