Skip to content

Commit 0fc4ce2

Browse files
committed
Rename filename -> db-filename cli argument
1 parent 7bb14d3 commit 0fc4ce2

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

backends/sqlite.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ var undef;
1010
module.exports = function sqliteBackend(opts, callback) {
1111
var sqlite = knex({
1212
client: 'sqlite',
13-
connection: opts
13+
connection: {
14+
filename: opts.dbFilename
15+
}
1416
});
1517

1618
process.nextTick(callback);

cli.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ if (opts.backend === 'sqlite' && !opts.database) {
3030
opts.database = 'main';
3131
}
3232

33-
if (opts.backend === 'sqlite' && !opts.filename) {
34-
return bail(new Error('You need to specify a filename (--filename) when using the \'sqlite\' backend'));
33+
if (opts.backend === 'sqlite' && !opts.dbFilename) {
34+
return bail(new Error('You need to specify a database filename (--db-filename) when using the \'sqlite\' backend'));
3535
}
3636

3737
if (!opts.interactive && !opts.database) {

cli/args.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ module.exports = require('yargs')
77
describe: 'Database name',
88
type: 'string'
99
})
10-
.option('filename', {
11-
alias: 'f',
12-
describe: 'full path to sqlite db',
10+
.option('db-filename', {
11+
alias: 'dbf',
12+
describe: 'full path to the sqlite db file',
1313
type: 'string',
1414
})
1515
.option('host', {

0 commit comments

Comments
 (0)