Skip to content

Commit 14ff043

Browse files
committed
fix(migrations): add default to modified timestamp
It is needed on some database backends. Fixes #268
1 parent 6ca8027 commit 14ff043

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

social_django/migrations/0009_auto_20191118_0520.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ class Migration(migrations.Migration):
1919
migrations.AddField(
2020
model_name="usersocialauth",
2121
name="modified",
22-
field=models.DateTimeField(auto_now=True),
22+
field=models.DateTimeField(auto_now=True, default=django.utils.timezone.now),
23+
preserve_default=False,
2324
),
2425
]

0 commit comments

Comments
 (0)