Skip to content

Commit 1f1610c

Browse files
committed
Fix Rails 5.2 integration expectation
1 parent f5a4334 commit 1f1610c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

spec/integration/rails_5.2.4.1_spec.rb

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@
3434
+#
3535
+# id :integer not null, primary key
3636
+# content :string
37-
+# count :integer default("0")
38-
+# status :boolean default("0")
37+
+# count :integer default(0)
38+
+# status :boolean default(FALSE)
3939
+# created_at :datetime not null
4040
+# updated_at :datetime not null
4141
+#
@@ -55,8 +55,8 @@
5555
+#
5656
+# id :integer not null, primary key
5757
+# content :string
58-
+# count :integer default("0")
59-
+# status :boolean default("0")
58+
+# count :integer default(0)
59+
+# status :boolean default(FALSE)
6060
+# created_at :datetime not null
6161
+# updated_at :datetime not null
6262
+#
@@ -76,8 +76,8 @@
7676
+#
7777
+# id :integer not null, primary key
7878
+# content :string
79-
+# count :integer default("0")
80-
+# status :boolean default("0")
79+
+# count :integer default(0)
80+
+# status :boolean default(FALSE)
8181
+# created_at :datetime not null
8282
+# updated_at :datetime not null
8383
+#

0 commit comments

Comments
 (0)