From 8709e530eeaf207af38b3acc036f5dbedec799bc Mon Sep 17 00:00:00 2001 From: dianavashti Date: Fri, 1 Dec 2017 14:19:44 -0800 Subject: [PATCH] Updates README.md file to add additional spec for users table and relevant clarifying information --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 6890379..b62f54d 100644 --- a/README.md +++ b/README.md @@ -58,6 +58,9 @@ Each requirement is assigned a point value. A fully complete requirement will ea Routing: - [ ] __20:__ Navigating to `/sign-up` loads the sign up page. +Schema: +- [ ] __x:__ Add a table `users` to the schema.sql file to handle their name, email, and password. Note: after completion of this spec you will need to re-run `$ npm run db:schema` + Users can: - [ ] __40:__ Sign up for an account with a name, email and password. - [ ] __10:__ Be redirected to the home page (`/`) after signing up. @@ -71,6 +74,7 @@ Files to modify: - `src/routes/authentication.js` - `src/actions/signUp.js` - `src/views/authentication/sign-up.ejs` +- `src/data/schema.sql` ## Sign in