Complete fake data loading via hopper
- Includes mods to task.created_date to allow overrides
This commit is contained in:
parent
403d1483f6
commit
1f27688aa4
9 changed files with 256 additions and 92 deletions
19
todo/migrations/0007_auto_update_created_date.py
Normal file
19
todo/migrations/0007_auto_update_created_date.py
Normal file
|
@ -0,0 +1,19 @@
|
|||
# Generated by Django 2.0.4 on 2018-04-05 00:24
|
||||
|
||||
from django.db import migrations, models
|
||||
import django.utils.timezone
|
||||
|
||||
|
||||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('todo', '0006_rename_item_model'),
|
||||
]
|
||||
|
||||
operations = [
|
||||
migrations.AlterField(
|
||||
model_name='task',
|
||||
name='created_date',
|
||||
field=models.DateField(blank=True, default=django.utils.timezone.now, null=True),
|
||||
),
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue