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: 'private/db/db.sqlite3',
dialect: 'sqlite',
},
};
When I migrate everything is ok and database file appears in correct directory: root\private\db\db.sqlite3.
Once I'm trying to configure it as URI (and that's exactly what I need) like:
module.exports = {
development: {
url: 'sqlite:private/db/db.sqlite3',
},
};
.. and I expect sequelize-cli to do exactly the same thing. But it creates directories in my disk : D:\db\db.sqlite3. Or in D:\private\db\db.sqlite3 if I specify url: 'sqlite:./private/db/db.sqlite3'. I've also tried some deviations with file: or something - I'm only getting errors or facing the same result.
I'm working on Windows. I have my config file in
root\db-migration\config.js. Whererootis my abstract working directory. And it contains the following:When I migrate everything is ok and database file appears in correct directory:
root\private\db\db.sqlite3.Once I'm trying to configure it as URI (and that's exactly what I need) like:
.. and I expect sequelize-cli to do exactly the same thing. But it creates directories in my disk :
D:\db\db.sqlite3. Or inD:\private\db\db.sqlite3if I specifyurl: 'sqlite:./private/db/db.sqlite3'. I've also tried some deviations withfile:or something - I'm only getting errors or facing the same result.