Advertisement
Foxx3r

Untitled

May 31st, 2019
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const Sequelize = require('sequelize')
  2. const sequelize = new Sequelize(
  3. "friendship",
  4. "root",
  5. "",
  6. {
  7.         host: "localhost",
  8.         dialect: "mysql"
  9. })
  10.  
  11. // Postagem.sync( { force: true } )
  12.  
  13. module.exports = {
  14.         Sequelize: Sequelize,
  15.         sequelize: sequelize
  16. }
  17. ~
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement