node-api-template/.sequelizerc
2024-07-03 14:52:30 -04:00

9 lines
254 B
Plaintext

const path = require("path");
module.exports = {
config: path.resolve("configs", "database.json"),
"models-path": path.resolve("src", "models"),
"seeders-path": path.resolve("db", "seeds"),
"migrations-path": path.resolve("db", "migrations")
};