From e4a0e0beadcd58c35becfa1af30426c6caa0f797 Mon Sep 17 00:00:00 2001 From: Robin Ward <robin.ward@gmail.com> Date: Wed, 22 Apr 2020 14:27:01 -0400 Subject: [PATCH] FIX: Ignore removed column --- app/models/group.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/models/group.rb b/app/models/group.rb index 3e9db5180ce..1f93c99b2cd 100644 --- a/app/models/group.rb +++ b/app/models/group.rb @@ -1,6 +1,10 @@ # frozen_string_literal: true class Group < ActiveRecord::Base + self.ignored_columns = %w{ + automatic_membership_retroactive + } + include HasCustomFields include AnonCacheInvalidator include HasDestroyedWebHook