20 lines
486 B
Python
20 lines
486 B
Python
# Generated by Django 2.0.3 on 2018-07-07 15:41
|
|
|
|
import datetime
|
|
from django.db import migrations, models
|
|
|
|
|
|
class Migration(migrations.Migration):
|
|
|
|
dependencies = [
|
|
('nalodeni', '0029_appuser_createdstamp'),
|
|
]
|
|
|
|
operations = [
|
|
migrations.AddField(
|
|
model_name='appregemail',
|
|
name='createdStamp',
|
|
field=models.DateTimeField(default=datetime.datetime.now, editable=False, verbose_name='Uživatel vytvořen'),
|
|
),
|
|
]
|