mirror of https://github.com/snachodog/mybuddy.git
Refresh migration file.
This commit is contained in:
parent
25fbf4c4d0
commit
3c22a79c4a
|
@ -1,5 +1,5 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Generated by Django 1.11.4 on 2017-08-18 05:56
|
||||
# Generated by Django 1.11.4 on 2017-08-18 18:58
|
||||
from __future__ import unicode_literals
|
||||
|
||||
from django.conf import settings
|
||||
|
@ -23,10 +23,11 @@ class Migration(migrations.Migration):
|
|||
('first_name', models.CharField(max_length=255)),
|
||||
('last_name', models.CharField(max_length=255)),
|
||||
('birth_date', models.DateField()),
|
||||
('slug', models.SlugField(editable=False, max_length=100, unique=True)),
|
||||
],
|
||||
options={
|
||||
'ordering': ['last_name', 'first_name'],
|
||||
'verbose_name_plural': 'Children',
|
||||
'ordering': ['last_name', 'first_name'],
|
||||
'default_permissions': ('view', 'add', 'change', 'delete'),
|
||||
},
|
||||
),
|
||||
|
@ -83,8 +84,8 @@ class Migration(migrations.Migration):
|
|||
('child', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, related_name='sleep', to='core.Child')),
|
||||
],
|
||||
options={
|
||||
'ordering': ['-start'],
|
||||
'verbose_name_plural': 'Sleep',
|
||||
'ordering': ['-start'],
|
||||
'default_permissions': ('view', 'add', 'change', 'delete'),
|
||||
},
|
||||
),
|
||||
|
|
Loading…
Reference in New Issue