Skip to content

Commit b32aaab

Browse files
fix final rubocop offense
1 parent 0fd8675 commit b32aaab

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/safe-pg-migrations/plugins/idempotent_statements.rb

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@ def create_table(table_name, *args)
8585
def add_check_constraint(table_name, expression, **options)
8686
options_without_validate = options.except(:validate)
8787
constraint_definition = check_constraint_for table_name,
88-
**check_constraint_options(table_name, expression, options_without_validate)
88+
**check_constraint_options(table_name, expression,
89+
options_without_validate)
8990

9091
return super if constraint_definition.nil?
9192

0 commit comments

Comments
 (0)