File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" :" CFMigrations" ,
3
- "version" :" 2 .0.9 " ,
3
+ "version" :" 3 .0.1 " ,
4
4
"location" :" forgeboxStorage" ,
5
5
"author" :" Eric Peterson" ,
6
6
"homepage" :" https://github.com/coldbox-modules/cfmigrations" ,
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ component accessors="true" {
34
34
.each ( function ( key ) {
35
35
if ( isSimpleValue ( args [ key ] ) ) {
36
36
// For some reason Lucee only picks up the `invoke` and ACF only picks up the scope assignment.
37
- invoke ( this , " set" & key , { " #key #" = args [ key ] } );
37
+ invoke ( this , " set" & key , { " #key #" : args [ key ] } );
38
38
variables [ key ] = args [ key ];
39
39
} else if ( key == " properties" ) {
40
40
variables .managerProperties = args [ key ];
Original file line number Diff line number Diff line change @@ -136,9 +136,15 @@ component accessors="true" {
136
136
137
137
var migration = wirebox .getInstance ( migrationStruct .componentPath );
138
138
139
- var schema = wirebox .getInstance ( " SchemaBuilder@qb" ).setGrammar ( wirebox .getInstance ( defaultGrammar ) ).setDefaultOptions ( { datasource : getDatasource () } );
139
+ var schema = wirebox
140
+ .getInstance ( " SchemaBuilder@qb" )
141
+ .setGrammar ( wirebox .getInstance ( defaultGrammar ) )
142
+ .setDefaultOptions ( { datasource : getDatasource () } );
140
143
141
- var query = wirebox .getInstance ( " QueryBuilder@qb" ).setGrammar ( wirebox .getInstance ( defaultGrammar ) ).setDefaultOptions ( { datasource : getDatasource () } );
144
+ var query = wirebox
145
+ .getInstance ( " QueryBuilder@qb" )
146
+ .setGrammar ( wirebox .getInstance ( defaultGrammar ) )
147
+ .setDefaultOptions ( { datasource : getDatasource () } );
142
148
143
149
preProcessHook ( migrationStruct );
144
150
You can’t perform that action at this time.
0 commit comments