node-api-template/.sequelizerc

9 lines
254 B
Plaintext
Raw Normal View History

2024-07-03 18:52:30 +00:00
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")
};