forked from mysociety/local-intelligence-hub
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Distinguish Member Lists and Custom Data Layers so that you can't piv…
…ot a member list by another member list
- Loading branch information
1 parent
5481224
commit cd28158
Showing
18 changed files
with
484 additions
and
234 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Generated by Django 4.2.10 on 2024-03-13 01:37 | ||
|
||
from django.db import migrations | ||
import django_choices_field.fields | ||
import hub.models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
("hub", "0082_alter_externaldatasource_geography_column_type"), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name="externaldatasource", | ||
name="data_type", | ||
field=django_choices_field.fields.TextChoicesField( | ||
choices=[ | ||
("member", "Members or supporters"), | ||
("region", "Areas or regions"), | ||
("other", "Other"), | ||
], | ||
choices_enum=hub.models.ExternalDataSource.DataSourceType, | ||
default="other", | ||
max_length=6, | ||
), | ||
), | ||
] |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.