diff options
author | CruiseDevice | 2018-10-08 13:25:02 +0530 |
---|---|---|
committer | CruiseDevice | 2018-10-08 13:25:02 +0530 |
commit | 36eccb84bab7d5701e3a356df2dc7cbbfdc25201 (patch) | |
tree | 64ce56d9f4dbf90c94028c697575f5d78de2bc97 | |
parent | 88c5d1f274760a0aa8070c4864f8112266c58686 (diff) | |
download | sbhs_server-36eccb84bab7d5701e3a356df2dc7cbbfdc25201.tar.gz sbhs_server-36eccb84bab7d5701e3a356df2dc7cbbfdc25201.tar.bz2 sbhs_server-36eccb84bab7d5701e3a356df2dc7cbbfdc25201.zip |
migrations
-rw-r--r-- | sbhs/migrations/0006_auto_20181005_1759.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/sbhs/migrations/0006_auto_20181005_1759.py b/sbhs/migrations/0006_auto_20181005_1759.py new file mode 100644 index 0000000..92e6ed4 --- /dev/null +++ b/sbhs/migrations/0006_auto_20181005_1759.py @@ -0,0 +1,37 @@ +# -*- coding: utf-8 -*- +# Generated by Django 1.11.15 on 2018-10-05 12:29 +from __future__ import unicode_literals + +import datetime +from django.db import migrations, models +from django.utils.timezone import utc + + +class Migration(migrations.Migration): + + dependencies = [ + ('sbhs', '0005_auto_20180919_1539'), + ] + + operations = [ + migrations.AddField( + model_name='board', + name='raspi_path', + field=models.URLField(default='localhost:8000'), + ), + migrations.AddField( + model_name='board', + name='usb_path', + field=models.URLField(default='/dev/ttyUSB0'), + ), + migrations.AlterField( + model_name='slot', + name='end_time', + field=models.DateTimeField(default=datetime.datetime(2018, 10, 5, 13, 24, 14, 376575, tzinfo=utc), verbose_name='End time of a slot'), + ), + migrations.AlterField( + model_name='slot', + name='start_time', + field=models.DateTimeField(default=datetime.datetime(2018, 10, 5, 12, 29, 14, 376544, tzinfo=utc), verbose_name='Start time of a slot'), + ), + ] |