Skip to content

Commit

Permalink
Update Abstract.cfc
Browse files Browse the repository at this point in the history
  • Loading branch information
MvdO79 authored Nov 5, 2023
1 parent 8c1f77a commit dffc269
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wheels/migrator/adapters/Abstract.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ component {
* throw an exception for adapters without its own addPrimaryKeyOptions implementation
*/
public string function addPrimaryKeyOptions() {
Throw(message = "The `addPrimaryKeyOptions` must be implented in the storage specific adapter.");
Throw(message = "The `addPrimaryKeyOptions` must be implemented in the storage specific adapter.");
}

/**
Expand Down Expand Up @@ -177,7 +177,7 @@ component {
}
}

// if we have multiple primarykeys the adapater might need to add a constraint here
// if we have multiple primarykeys the adapter might need to add a constraint here
if (ArrayLen(arguments.primaryKeys) > 1) {
local.sql = local.sql & ",#Chr(13)##Chr(10)# " & primaryKeyConstraint(argumentCollection = arguments);
}
Expand Down

0 comments on commit dffc269

Please sign in to comment.