aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--spec/db/schema_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/db/schema_spec.rb b/spec/db/schema_spec.rb
index 0e0fe780a..a36d3f926 100644
--- a/spec/db/schema_spec.rb
+++ b/spec/db/schema_spec.rb
@@ -13,7 +13,7 @@ RSpec::Matchers.define :use_bigint_keys do
File.open(filename, 'r') do |f|
@non_bigint_primary_keys = f
.grep(/create_table /)
- .grep_v(/id: :bigserial/)
+ .grep_v(/id: (:bigserial|false)/)
f.rewind