From 6abf51463226f18cd93ca35049b93f5c861fc84b Mon Sep 17 00:00:00 2001
From: Piotr Gawron <piotr.gawron@uni.lu>
Date: Wed, 13 Jun 2018 13:59:27 +0200
Subject: [PATCH] date_added is modifed only on add

---
 .../web/migrations/0116_auto_20180611_1346.py | 20 +++++++++++++++++++
 smash/web/models/study_subject.py             |  2 +-
 2 files changed, 21 insertions(+), 1 deletion(-)
 create mode 100644 smash/web/migrations/0116_auto_20180611_1346.py

diff --git a/smash/web/migrations/0116_auto_20180611_1346.py b/smash/web/migrations/0116_auto_20180611_1346.py
new file mode 100644
index 00000000..a333ad8b
--- /dev/null
+++ b/smash/web/migrations/0116_auto_20180611_1346.py
@@ -0,0 +1,20 @@
+# -*- coding: utf-8 -*-
+# Generated by Django 1.10.7 on 2018-06-11 13:46
+from __future__ import unicode_literals
+
+from django.db import migrations, models
+
+
+class Migration(migrations.Migration):
+
+    dependencies = [
+        ('web', '0115_auto_20180611_0950'),
+    ]
+
+    operations = [
+        migrations.AlterField(
+            model_name='studysubject',
+            name='date_added',
+            field=models.DateField(auto_now_add=True, verbose_name=b'Added on'),
+        ),
+    ]
diff --git a/smash/web/models/study_subject.py b/smash/web/models/study_subject.py
index 705bd190..7963fe5f 100644
--- a/smash/web/models/study_subject.py
+++ b/smash/web/models/study_subject.py
@@ -84,7 +84,7 @@ class StudySubject(models.Model):
                                 verbose_name='Comments'
                                 )
     date_added = models.DateField(verbose_name='Added on',
-                                  auto_now=True
+                                  auto_now_add=True
                                   )
     referral = models.CharField(max_length=128,
                                 null=True,
-- 
GitLab