20 lines
513 B
Python
20 lines
513 B
Python
# Generated by Django 2.0.3 on 2018-06-18 07:49
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('nalodeni', '0022_appuser_email_contact_token'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='appuser',
|
|
name='ts_for_ldap_sync',
|
|
field=models.DateTimeField(blank=True, default=datetime.datetime.now, null=True, verbose_name='Timestamp pro LDAP synchronizaci'),
|
|
),
|
|
]
|