Skip to content

Commit

Permalink
[migrations] Reset migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
nemesifier committed Nov 24, 2017
1 parent 315d847 commit 3f62a1b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 69 deletions.
9 changes: 4 additions & 5 deletions django_loci/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
# Generated by Django 1.11.5 on 2017-11-22 16:11
# Generated by Django 1.11.7 on 2017-11-24 10:53
from __future__ import unicode_literals

import django.contrib.gis.db.models.fields
Expand Down Expand Up @@ -37,9 +37,9 @@ class Migration(migrations.Migration):
('id', models.UUIDField(default=uuid.uuid4, editable=False, primary_key=True, serialize=False)),
('created', model_utils.fields.AutoCreatedField(default=django.utils.timezone.now, editable=False, verbose_name='created')),
('modified', model_utils.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False, verbose_name='modified')),
('type', models.CharField(choices=[('outdoor', 'Outdoor environment (eg: street, square, garden)'), ('indoor', 'Indoor environment (eg: building, subway, large transportation vehicles)')], db_index=True, help_text='indoor locations can have floorplans associated to them', max_length=8)),
('is_mobile', models.BooleanField(db_index=True, verbose_name='is mobile?')),
('name', models.CharField(max_length=75, verbose_name='name')),
('name', models.CharField(help_text='A descriptive name of the location (building name, company name, etc.)', max_length=75, verbose_name='name')),
('type', models.CharField(choices=[('outdoor', 'Outdoor environment (eg: street, square, garden, land)'), ('indoor', 'Indoor environment (eg: building, roofs, subway, large vehicles)')], db_index=True, help_text='indoor locations can have floorplans associated to them', max_length=8)),
('is_mobile', models.BooleanField(db_index=True, default=False, help_text='is this location a moving object?', verbose_name='is mobile?')),
('address', models.CharField(blank=True, db_index=True, max_length=256, verbose_name='address')),
('geometry', django.contrib.gis.db.models.fields.GeometryField(blank=True, null=True, srid=4326, verbose_name='geometry')),
],
Expand All @@ -54,7 +54,6 @@ class Migration(migrations.Migration):
('created', model_utils.fields.AutoCreatedField(default=django.utils.timezone.now, editable=False, verbose_name='created')),
('modified', model_utils.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False, verbose_name='modified')),
('object_id', models.CharField(db_index=True, max_length=36)),
('type', models.CharField(choices=[('outdoor', 'Outdoor'), ('indoor', 'Indoor'), ('mobile', 'Mobile')], max_length=8)),
('indoor', models.CharField(blank=True, max_length=64, null=True, verbose_name='indoor position')),
('content_type', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to='contenttypes.ContentType')),
('floorplan', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.PROTECT, to='django_loci.FloorPlan')),
Expand Down
20 changes: 0 additions & 20 deletions django_loci/migrations/0002_auto_20171122_1713.py

This file was deleted.

24 changes: 0 additions & 24 deletions django_loci/migrations/0003_auto_20171123_1722.py

This file was deleted.

20 changes: 0 additions & 20 deletions django_loci/migrations/0004_auto_20171123_1839.py

This file was deleted.

0 comments on commit 3f62a1b

Please sign in to comment.