Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialNguyen Pham
Full Stack JavaScript Techdegree Graduate 17,299 PointsWhy is there no development.db file after run npm start?
I followed the new update guideline, but I don't see any development.db in /bin
When i ran npm start, it showed on my Terminal:
blog@1.0.0 start /Users/billy/Desktop/SQL/sequelize_blog/sequelize_blog-start
node ./bin/www
Executing (default): CREATE TABLE IF NOT EXISTS Articles
(id
INTEGER PRIMARY KEY AUTOINCREMENT, title
VARCHAR(255), author
VARCHAR(255), body
TEXT, createdAt
DATETIME NOT NULL, updatedAt
DATETIME NOT NULL);
Executing (default): PRAGMA INDEX_LIST(Articles
)
Can someone help me out?