File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ component accessors="true" {
5
5
property name = " defaultGrammar" default = " AutoDiscover@qb" ;
6
6
property name = " datasource" ;
7
7
property name = " migrationsTable" default = " cfmigrations" ;
8
- property name = " schema" ;
8
+ property name = " schema" default = " " ;
9
9
property name = " useTransactions" default = " true" ;
10
10
11
11
public QBMigrationManager function init () {
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ component extends="tests.resources.ModuleIntegrationSpec" appMapping="/app" {
10
10
expect ( manager .getDefaultGrammar () ).toBe ( " AutoDiscover@qb" );
11
11
expect ( manager .getDatasource () ).toBeNull ();
12
12
expect ( manager .getMigrationsTable () ).toBe ( " cfmigrations" );
13
- expect ( manager .getSchema () ).toBeNull ( );
13
+ expect ( manager .getSchema () ).toBe ( " " );
14
14
expect ( manager .getUseTransactions () ).toBeTrue ();
15
15
} );
16
16
You can’t perform that action at this time.
0 commit comments