From d26282f1241336fb4840c645ddf088a9f7a152f5 Mon Sep 17 00:00:00 2001
From: Ben Adida <ben@adida.net>
Date: Tue, 8 Sep 2015 00:28:38 +0000
Subject: [PATCH] removed traces of south

---
 helios/datatypes/djangofield.py | 7 -------
 helios_auth/jsonfield.py        | 6 ------
 2 files changed, 13 deletions(-)

diff --git a/helios/datatypes/djangofield.py b/helios/datatypes/djangofield.py
index 4465da7..e0eb1b4 100644
--- a/helios/datatypes/djangofield.py
+++ b/helios/datatypes/djangofield.py
@@ -72,10 +72,3 @@ class LDObjectField(models.TextField):
     def value_to_string(self, obj):
         value = self._get_val_from_obj(obj)
         return self.get_db_prep_value(value)
-
-##
-## for schema migration, we have to tell South about JSONField
-## basically that it's the same as its parent class
-##
-from south.modelsinspector import add_introspection_rules
-add_introspection_rules([], ["^helios\.datatypes\.djangofield.LDObjectField"])
diff --git a/helios_auth/jsonfield.py b/helios_auth/jsonfield.py
index c0c83a6..0104ce4 100644
--- a/helios_auth/jsonfield.py
+++ b/helios_auth/jsonfield.py
@@ -72,9 +72,3 @@ class JSONField(models.TextField):
         value = self._get_val_from_obj(obj)
         return self.get_db_prep_value(value)        
 
-##
-## for schema migration, we have to tell South about JSONField
-## basically that it's the same as its parent class
-##
-from south.modelsinspector import add_introspection_rules
-add_introspection_rules([], ["^helios_auth\.jsonfield\.JSONField"])
-- 
GitLab