psensor: Add appVersion to model
diff --git a/psensor/admin.py b/psensor/admin.py
index 4228cfb..bb36a8a 100644
--- a/psensor/admin.py
+++ b/psensor/admin.py
@@ -4,5 +4,5 @@
 
 @admin.register(PSensorSetting)
 class PSensorSettingAdmin(admin.ModelAdmin):
-    list_display = ['uuid', 'old_offset', 'old_near_threshold', 'old_far_threshold', 'new_offset', 'new_near_threshold', 'new_far_threshold',  'timestamp']
+    list_display = ['uuid', 'appVersion', 'old_offset', 'old_near_threshold', 'old_far_threshold', 'new_offset', 'new_near_threshold', 'new_far_threshold',  'timestamp']
     pass
diff --git a/psensor/models.py b/psensor/models.py
index fdd4eb3..9890645 100644
--- a/psensor/models.py
+++ b/psensor/models.py
@@ -3,6 +3,7 @@
 
 class PSensorSetting(models.Model):
     uuid = models.CharField(max_length=255)
+    appVersion = models.CharField(max_length=255)
     old_offset = models.IntegerField()
     old_near_threshold = models.IntegerField()
     old_far_threshold = models.IntegerField()
diff --git a/psensor/serializers.py b/psensor/serializers.py
index 2333458..d0a139a 100644
--- a/psensor/serializers.py
+++ b/psensor/serializers.py
@@ -6,4 +6,4 @@
     permission_classes = (permissions.IsAuthenticated)
     class Meta:
         model = PSensorSetting
-        fields = ('pk','uuid', 'old_offset', 'old_near_threshold', 'old_far_threshold', 'new_offset', 'new_near_threshold', 'new_far_threshold',  'timestamp')
+        fields = ('pk','uuid', 'appVersion', 'old_offset', 'old_near_threshold', 'old_far_threshold', 'new_offset', 'new_near_threshold', 'new_far_threshold',  'timestamp')