aboutsummaryrefslogtreecommitdiff
path: root/apps/notes/migrations/0004_auto_20181117_2039.py
blob: 6fc6f2db2b837a4fb329f2d9b9dedce1f3c6b1c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# Generated by Django 2.1.2 on 2018-11-18 02:39

import datetime
from django.db import migrations, models
from django.utils.timezone import utc


class Migration(migrations.Migration):

    dependencies = [
        ('notes', '0003_note_folder'),
    ]

    operations = [
        migrations.AddField(
            model_name='folder',
            name='date_created',
            field=models.DateTimeField(blank=True, default=datetime.datetime(2018, 11, 18, 2, 38, 45, 996162, tzinfo=utc), editable=False),
            preserve_default=False,
        ),
        migrations.AddField(
            model_name='folder',
            name='date_updated',
            field=models.DateTimeField(blank=True, default=datetime.datetime(2018, 11, 18, 2, 39, 0, 850658, tzinfo=utc), editable=False),
            preserve_default=False,
        ),
    ]