diff --git a/src/rideshare/migrations/0002_auto_20180814_1942.py b/src/rideshare/migrations/0002_auto_20180814_1942.py new file mode 100644 index 00000000..ffcbeff5 --- /dev/null +++ b/src/rideshare/migrations/0002_auto_20180814_1942.py @@ -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'), + ), + ] diff --git a/src/teams/migrations/0049_auto_20180815_1119.py b/src/teams/migrations/0049_auto_20180815_1119.py new file mode 100644 index 00000000..07325294 --- /dev/null +++ b/src/teams/migrations/0049_auto_20180815_1119.py @@ -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']}, + ), + ]