Skip to content

Commit

Permalink
Fix test (#412)
Browse files Browse the repository at this point in the history
Set h2 default value of es_onboarding_process.activation_removed to false.

Relates to #351
  • Loading branch information
banterCZ authored Oct 3, 2022
1 parent 3288278 commit a0f774f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public class OnboardingProcessEntity implements Serializable {
* When the status is {@link OnboardingStatus#FAILED}, the activation specified be {@link #activationId} should be removed at PowerAuth server.
* This flag indicates that the task has been done.
*/
@Column(name = "activation_removed")
@Column(name = "activation_removed", columnDefinition="boolean default false")
private boolean activationRemoved;

@Column(name = "error_detail")
Expand Down

0 comments on commit a0f774f

Please sign in to comment.