File tree 3 files changed +8
-6
lines changed
3 files changed +8
-6
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,9 @@ var undef;
10
10
module . exports = function sqliteBackend ( opts , callback ) {
11
11
var sqlite = knex ( {
12
12
client : 'sqlite' ,
13
- connection : opts
13
+ connection : {
14
+ filename : opts . dbFilename
15
+ }
14
16
} ) ;
15
17
16
18
process . nextTick ( callback ) ;
Original file line number Diff line number Diff line change @@ -30,8 +30,8 @@ if (opts.backend === 'sqlite' && !opts.database) {
30
30
opts . database = 'main' ;
31
31
}
32
32
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' ) ) ;
35
35
}
36
36
37
37
if ( ! opts . interactive && ! opts . database ) {
Original file line number Diff line number Diff line change @@ -7,9 +7,9 @@ module.exports = require('yargs')
7
7
describe : 'Database name' ,
8
8
type : 'string'
9
9
} )
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 ' ,
13
13
type : 'string' ,
14
14
} )
15
15
. option ( 'host' , {
You can’t perform that action at this time.
0 commit comments