-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1097 from uktrade/feature/KLS-736-Move-Export-Rea…
…diness-Models Move export_readiness models to core app
- Loading branch information
Showing
10 changed files
with
194 additions
and
31 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
# Generated by Django 4.1.9 on 2023-06-14 09:39 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('wagtailimages', '0024_index_image_file_hash'), | ||
('core', '0030_greatmedia'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='Region', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('name', models.CharField(max_length=100, unique=True)), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='Tag', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('name', models.CharField(max_length=100, unique=True)), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='IndustryTag', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('name', models.CharField(max_length=100, unique=True)), | ||
('icon', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, related_name='+', to='wagtailimages.image')), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='Country', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('name', models.CharField(max_length=100, unique=True)), | ||
('slug', models.CharField(max_length=100, unique=True)), | ||
('region', models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='core.region')), | ||
], | ||
), | ||
] |
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,43 @@ | ||
# Generated by Django 4.1.9 on 2023-06-14 09:54 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0031_region_tag_industrytag_country'), | ||
] | ||
|
||
def copy_export_readiness_data(apps, schema_editor): | ||
ExportReadinessTag = apps.get_model("export_readiness", "Tag") | ||
ExportReadinessIndustryTag = apps.get_model("export_readiness", "IndustryTag") | ||
ExportReadinessRegion = apps.get_model("export_readiness", "Region") | ||
ExportReadinessCountry = apps.get_model("export_readiness", "Country") | ||
|
||
CoreTag = apps.get_model("core", "Tag") | ||
CoreIndustryTag = apps.get_model("core", "IndustryTag") | ||
CoreRegion = apps.get_model("core", "Region") | ||
CoreCountry = apps.get_model("core", "Country") | ||
|
||
CoreRegion.objects.bulk_create(ExportReadinessRegion.objects.all()) | ||
CoreTag.objects.bulk_create(ExportReadinessTag.objects.all()) | ||
CoreCountry.objects.bulk_create(ExportReadinessCountry.objects.all()) | ||
CoreIndustryTag.objects.bulk_create(ExportReadinessIndustryTag.objects.all()) | ||
|
||
|
||
def delete_export_readiness_data(apps, schema_editor): | ||
Tag = apps.get_model("core", "Tag") | ||
IndustryTag = apps.get_model("core", "IndustryTag") | ||
Region = apps.get_model("core", "Region") | ||
Country = apps.get_model("core", "Country") | ||
|
||
Country.objects.all().delete() | ||
IndustryTag.objects.all().delete() | ||
Region.objects.all().delete() | ||
Tag.objects.all().delete() | ||
|
||
|
||
operations = [ | ||
migrations.RunPython(copy_export_readiness_data, delete_export_readiness_data), | ||
] |
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,64 @@ | ||
from django.db import models | ||
|
||
from wagtail.admin.panels import FieldPanel | ||
from wagtail.snippets.models import register_snippet | ||
|
||
|
||
@register_snippet | ||
class Tag(models.Model): | ||
name = models.CharField(max_length=100, unique=True) | ||
|
||
def __str__(self): | ||
return self.name | ||
|
||
panels = [ | ||
FieldPanel('name') | ||
] | ||
|
||
|
||
@register_snippet | ||
class IndustryTag(models.Model): | ||
name = models.CharField(max_length=100, unique=True) | ||
icon = models.ForeignKey( | ||
'wagtailimages.Image', | ||
null=True, | ||
blank=True, | ||
on_delete=models.SET_NULL, | ||
related_name='+' | ||
) | ||
|
||
def __str__(self): | ||
return self.name | ||
|
||
panels = [ | ||
FieldPanel('name'), | ||
FieldPanel('icon') | ||
] | ||
|
||
|
||
@register_snippet | ||
class Region(models.Model): | ||
name = models.CharField(max_length=100, unique=True) | ||
|
||
def __str__(self): | ||
return self.name | ||
|
||
panels = [ | ||
FieldPanel('name') | ||
] | ||
|
||
|
||
@register_snippet | ||
class Country(models.Model): | ||
name = models.CharField(max_length=100, unique=True) | ||
slug = models.CharField(max_length=100, unique=True) | ||
region = models.ForeignKey(Region, null=True, blank=True, on_delete=models.SET_NULL) | ||
|
||
def __str__(self): | ||
return self.name | ||
|
||
panels = [ | ||
FieldPanel('name'), | ||
FieldPanel('slug'), | ||
FieldPanel('region') | ||
] |
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
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.