Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Set up an Express server and a Postgres server running.
  2.  
  3. Express will be using Sequelize to connect to Postgres.
  4.  
  5. In Postgres, there will need to be a `Users` table with these column names and their DataTypes:
  6.  
  7. Column Name | DataType
  8. -----|----
  9. username | STRING
  10. password | STRING
  11. created_at | DATE
  12. updated_at | DATE
  13.  
  14. ```
  15. $ sequelize init
  16. $ sequelize model:create
  17. $ sequelize help
  18. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement