cli
cli copied to clipboard
The Sequelize CLI
I am using dotenv package. I reuire the package on top. I also tried changing "development" to "test" or "production", but still It's always using "development". ``` 'use strict'; require('dotenv').config({path:'../../.env'})...
## What you are doing? I try to run the cli with a configured .sequelizerc, but the cli is printing a error: `sequelize`: Unknown arguments: config, migrations-path, models-path, seeders-path .sequelizerc...
### Pull Request check-list _Please make sure to review and check all of these items:_ - [ ] Does `npm run test` pass with this change (including linting)? **No, but...
i'm sorry if this is not the correct place to post it (if so please point me to the right direction..) We have a migration folder with all of our...
In the same way that current CLI works, it would be great to be able to consume Typescript files. My current project heavily uses aliases paths in development, runtime and...
Relates to https://github.com/sequelize/umzug/issues/33
# Feature Description Other tools like ESLint and Prettier have support to JavaScript, JSON, or YAML. This can be in the form of an `.sequelizerc.*` file. I'm just proposing `.sequelizerc.js`...
I'm working on Windows. I have my config file in `root\db-migration\config.js`. Where `root` is my abstract working directory. And it contains the following: ``` module.exports = { development: { storage:...
## Feature Description ### Is your feature request related to a problem? Please describe. Yes, migrations should be run as groups. If I have 3 new migrations that I created...
I have following sequelize directories structure in my NodeJS application: database/ ├── migrations/ ├── models/ ├── seeders/ All the scheme migrations are stored in the database/migrations/ directory. I run it...