Skip to content

Commit

Permalink
feat: rebased migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
lc-hd committed Nov 27, 2023
1 parent 4817d1c commit d5636d4
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 89 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.1.14 on 2023-11-24 23:15
# Generated by Django 3.1.14 on 2023-11-27 04:35

from django.db import migrations, models

Expand All @@ -14,18 +14,18 @@ class Migration(migrations.Migration):
name='Coordinate',
fields=[
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')),
('latitude', models.FloatField()),
('longitude', models.FloatField()),
('latitude', models.DecimalField(decimal_places=6, max_digits=9)),
('longitude', models.DecimalField(decimal_places=6, max_digits=9)),
],
),
migrations.AddField(
model_name='community',
name='boundary_name',
name='name_of_boundaries',
field=models.SlugField(blank=True, max_length=200, null=True),
),
migrations.AddField(
model_name='community',
name='boundary_source',
name='source_of_boundaries',
field=models.SlugField(blank=True, max_length=200, null=True),
),
migrations.CreateModel(
Expand Down
23 changes: 0 additions & 23 deletions communities/migrations/0047_auto_20231125_0110.py

This file was deleted.

23 changes: 0 additions & 23 deletions communities/migrations/0048_auto_20231125_0246.py

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 3.1.14 on 2023-11-24 23:15
# Generated by Django 3.1.14 on 2023-11-27 04:35

from django.db import migrations, models

Expand All @@ -13,6 +13,6 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name='project',
name='project_privacy',
field=models.CharField(choices=[('Contributor', 'Contributor'), ('Public', 'Public'), ('Private', 'Private')], max_length=20, null=True),
field=models.CharField(choices=[('Contributor', 'Contributor'), ('Private', 'Private'), ('Public', 'Public')], max_length=20, null=True),
),
]
18 changes: 0 additions & 18 deletions projects/migrations/0182_auto_20231125_0110.py

This file was deleted.

18 changes: 0 additions & 18 deletions projects/migrations/0183_auto_20231125_0246.py

This file was deleted.

0 comments on commit d5636d4

Please sign in to comment.