##Command Line Basics
What are the terminal commands to:
- Create a new folder called "Blah"
Your answer goes here
- Move into the newly created "Blah" folder
##Command Line Basics
What are the terminal commands to:
Your answer goes here
| var Sequelize = require("sequelize"); | |
| var sequelize = new Sequelize("social_app", null, null, { | |
| dialect: "postgres", | |
| port: 5432 | |
| }); | |
| var Animal = sequelize.define("animal", { | |
| name: Sequelize.STRING, | |
| location: Sequelize.STRING |