Skip to content

Commit f0139f1

Browse files
authored
fix(QBMigrationManager): make logMigration method public
There are circumstances where this method may need to be accessed via the migration service, itself, or by retrieving the manager through the service.
1 parent 97ebc87 commit f0139f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

models/QBMigrationManager.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ component accessors="true" {
9292
* @direction Whether to log it as up or down
9393
* @componentName The component name to log
9494
*/
95-
private void function logMigration( direction, componentName ) {
95+
public void function logMigration( direction, componentName ) {
9696
if ( direction == "up" ) {
9797
queryExecute(
9898
"INSERT INTO #getMigrationsTable()# VALUES ( :name, :time )",

0 commit comments

Comments
 (0)