Conversation
| ## Week 3 Sprint | ||
| - [ ] Review the Product Requirements Document (PRD) | ||
| - [ ] Design ERD (v1) including: | ||
| - `users` |
There was a problem hiding this comment.
@adamblanchard which of the religious-level preference of singular vs. plural table names is held before the project?
It would be good to stay consistent. Anything small can confuse trainees.
At least foundation uses singular.
There was a problem hiding this comment.
you are right just checked the DB materials:
EXERCISE 1: Database Creation (10/15 minutes)
Trainees should now create their own tasks.sqlite3 database under the databases/database directory in their assignment repo. Using the ERD from the previous exercise, trainees need to write suitable CREATE TABLE statements for storing users and tasks with statuses.
Copy
CREATE TABLE user (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
-- Your columns here
);so yeah thats singular
though I agree that its more a ideological rather education, but in this case it will be more consistent with educational materials
There was a problem hiding this comment.
If foundation and and specialism DB modules currently use singular, then let's go with that yes :-)
Co-authored-by: karo <64137994+shpomp@users.noreply.github.com>
Co-authored-by: karo <64137994+shpomp@users.noreply.github.com>
No description provided.