From 9c75d7b5609f090bc54e948eee50e92d98db9ae9 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Fri, 4 Feb 2022 14:42:11 -0600 Subject: [PATCH] Add `CustomerGroupAssignment` to customer version history --- tailbone/views/customers.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tailbone/views/customers.py b/tailbone/views/customers.py index bf8284c0..c9bfacb9 100644 --- a/tailbone/views/customers.py +++ b/tailbone/views/customers.py @@ -2,7 +2,7 @@ ################################################################################ # # Rattail -- Retail Software Framework -# Copyright © 2010-2021 Lance Edgar +# Copyright © 2010-2022 Lance Edgar # # This file is part of Rattail. # @@ -400,6 +400,7 @@ class CustomerView(MasterView): def get_version_child_classes(self): return [ + (model.CustomerGroupAssignment, 'customer_uuid'), (model.CustomerPhoneNumber, 'parent_uuid'), (model.CustomerEmailAddress, 'parent_uuid'), (model.CustomerMailingAddress, 'parent_uuid'),