From 9405e9af58c0d63158a2902236243a897a12ec4f Mon Sep 17 00:00:00 2001 From: Claire Date: Fri, 4 Aug 2023 09:00:31 +0200 Subject: [PATCH] Fix incorrect model annotation for List#exclusive (#26313) --- app/models/list.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/list.rb b/app/models/list.rb index 7dc96f01b..fcef49e6e 100644 --- a/app/models/list.rb +++ b/app/models/list.rb @@ -10,7 +10,7 @@ # created_at :datetime not null # updated_at :datetime not null # replies_policy :integer default("list"), not null -# exclusive :boolean default(FALSE) +# exclusive :boolean default(FALSE), not null # class List < ApplicationRecord