diff --git a/README.md b/README.md index a3aa229c9..dc1b7858e 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ We will hash the user's password using `bcryptjs`, and use JSON Web Tokens and t - [ ] Fork and clone the repo. Delete your old fork from Github first if you are repeating this Unit. - [ ] Open the assignment in Canvas and click on the "Set up git" option. - [ ] Follow instructions to set up Codegrade's Webhook and Deploy Key. -- [ ] Push your first commit: `git commit --allow-empty -m "first commit" && git push`. +- [ ] Push your first commit: `git commit --allow-empty -m "first commit" && git push`.!! - [ ] Check to see that Codegrade has accepted your git submission. For a step-by-step on setting up Codegrade see [this guide.](https://www.notion.so/lambdaschool/Submitting-an-assignment-via-Code-Grade-A-Step-by-Step-Walkthrough-07bd65f5f8364e709ecb5064735ce374) diff --git a/data/migrations/20201123181212_users.js b/data/migrations/20201123181212_users.js index 98f96ee52..b191b959c 100644 --- a/data/migrations/20201123181212_users.js +++ b/data/migrations/20201123181212_users.js @@ -4,7 +4,7 @@ exports.up = function (knex) { users.string('username', 255).notNullable().unique(); users.string('password', 255).notNullable(); }); -}; +} exports.down = function (knex) { return knex.schema.dropTableIfExists('users');