Add missing non-db migrations.
This commit is contained in:
parent
47bf0fcdbf
commit
93d6525b29
18
src/rideshare/migrations/0002_auto_20180814_1942.py
Normal file
18
src/rideshare/migrations/0002_auto_20180814_1942.py
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
# Generated by Django 2.1 on 2018-08-14 17:42
|
||||||
|
|
||||||
|
from django.db import migrations, models
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('rideshare', '0001_initial'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterField(
|
||||||
|
model_name='ride',
|
||||||
|
name='when',
|
||||||
|
field=models.DateTimeField(help_text='Format is YYYY-MM-DD HH:mm'),
|
||||||
|
),
|
||||||
|
]
|
17
src/teams/migrations/0049_auto_20180815_1119.py
Normal file
17
src/teams/migrations/0049_auto_20180815_1119.py
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
# Generated by Django 2.1 on 2018-08-15 09:19
|
||||||
|
|
||||||
|
from django.db import migrations
|
||||||
|
|
||||||
|
|
||||||
|
class Migration(migrations.Migration):
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
|
('teams', '0048_auto_20180814_1950'),
|
||||||
|
]
|
||||||
|
|
||||||
|
operations = [
|
||||||
|
migrations.AlterModelOptions(
|
||||||
|
name='teamtask',
|
||||||
|
options={'ordering': ['completed', 'when', 'name']},
|
||||||
|
),
|
||||||
|
]
|
Loading…
Reference in a new issue