1
0
mirror of https://gitlab.crans.org/mediatek/med.git synced 2025-06-30 01:51:09 +02:00

Some user do not have a registration date

This commit is contained in:
Alexandre Iooss
2019-08-10 11:21:50 +02:00
parent a6dc8653af
commit c306113fbd
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,19 @@
# Generated by Django 2.2.4 on 2019-08-10 09:21
from django.db import migrations, models
import django.utils.timezone
class Migration(migrations.Migration):
dependencies = [
('users', '0028_auto_20190810_1003'),
]
operations = [
migrations.AlterField(
model_name='user',
name='date_joined',
field=models.DateTimeField(default=django.utils.timezone.now, null=True, verbose_name='date joined'),
),
]