-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
96b1661
commit 7dbfc18
Showing
15 changed files
with
732 additions
and
667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
django_api/etools_prp/apps/core/migrations/0018_auto_20220223_2323.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
# Generated by Django 3.2.6 on 2022-02-23 23:23 | ||
|
||
import django.contrib.gis.db.models.fields | ||
from django.db import migrations, models | ||
import django.utils.timezone | ||
import model_utils.fields | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0017_alter_location_unique_together'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterUniqueTogether( | ||
name='gatewaytype', | ||
unique_together=None, | ||
), | ||
migrations.RemoveField( | ||
model_name='gatewaytype', | ||
name='country', | ||
), | ||
migrations.RemoveField( | ||
model_name='workspace', | ||
name='countries', | ||
), | ||
migrations.AddField( | ||
model_name='location', | ||
name='created', | ||
field=model_utils.fields.AutoCreatedField(default=django.utils.timezone.now, editable=False, verbose_name='created'), | ||
), | ||
migrations.AddField( | ||
model_name='location', | ||
name='is_active', | ||
field=models.BooleanField(blank=True, default=True, verbose_name='Active'), | ||
), | ||
migrations.AddField( | ||
model_name='location', | ||
name='modified', | ||
field=model_utils.fields.AutoLastModifiedField(default=django.utils.timezone.now, editable=False, verbose_name='modified'), | ||
), | ||
migrations.AlterField( | ||
model_name='location', | ||
name='geom', | ||
field=django.contrib.gis.db.models.fields.MultiPolygonField(blank=True, null=True, srid=4326, verbose_name='Geo Point'), | ||
), | ||
migrations.AlterField( | ||
model_name='location', | ||
name='point', | ||
field=django.contrib.gis.db.models.fields.PointField(blank=True, null=True, srid=4326, verbose_name='Point'), | ||
), | ||
] |
20 changes: 20 additions & 0 deletions
20
django_api/etools_prp/apps/core/migrations/0019_delete_cartodbtable.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Generated by Django 3.2.6 on 2022-03-01 00:39 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0018_auto_20220223_2323'), | ||
] | ||
|
||
operations = [ | ||
migrations.SeparateDatabaseAndState( | ||
state_operations=[ | ||
migrations.DeleteModel(name='CartoDBTable'), | ||
], | ||
database_operations=[ | ||
] | ||
) | ||
] |
Oops, something went wrong.