-
Notifications
You must be signed in to change notification settings - Fork 2
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 #3415 from uktrade/IGUK-394-dnb-fe-phase1
IGUK-394 Dunn and Bradstreet integration - Front-end (Phase 1)
- Loading branch information
Showing
39 changed files
with
1,463 additions
and
201 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
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
38 changes: 38 additions & 0 deletions
38
..._online_offer/migrations/0055_userdata_address_line_1_userdata_address_line_2_and_more.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,38 @@ | ||
# Generated by Django 4.2.15 on 2024-09-25 19:08 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('international_online_offer', '0054_triagedata_sector_id_triagedata_sector_sub_sub_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='userdata', | ||
name='address_line_1', | ||
field=models.CharField(blank=True, default='', max_length=255), | ||
), | ||
migrations.AddField( | ||
model_name='userdata', | ||
name='address_line_2', | ||
field=models.CharField(blank=True, default='', max_length=255), | ||
), | ||
migrations.AddField( | ||
model_name='userdata', | ||
name='duns_number', | ||
field=models.CharField(blank=True, default='', max_length=255), | ||
), | ||
migrations.AddField( | ||
model_name='userdata', | ||
name='postcode', | ||
field=models.CharField(blank=True, default='', max_length=255), | ||
), | ||
migrations.AddField( | ||
model_name='userdata', | ||
name='town', | ||
field=models.CharField(blank=True, default='', max_length=255), | ||
), | ||
] |
18 changes: 18 additions & 0 deletions
18
international_online_offer/migrations/0056_userdata_county.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,18 @@ | ||
# Generated by Django 4.2.15 on 2024-09-26 14:35 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('international_online_offer', '0055_userdata_address_line_1_userdata_address_line_2_and_more'), | ||
] | ||
|
||
operations = [ | ||
migrations.AddField( | ||
model_name='userdata', | ||
name='county', | ||
field=models.CharField(blank=True, default='', max_length=255), | ||
), | ||
] |
43 changes: 43 additions & 0 deletions
43
international_online_offer/migrations/0057_alter_userdata_address_line_1_and_more.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,43 @@ | ||
# Generated by Django 4.2.15 on 2024-10-01 11:34 | ||
|
||
from django.db import migrations, models | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('international_online_offer', '0056_userdata_county'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterField( | ||
model_name='userdata', | ||
name='address_line_1', | ||
field=models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='userdata', | ||
name='address_line_2', | ||
field=models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='userdata', | ||
name='county', | ||
field=models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='userdata', | ||
name='duns_number', | ||
field=models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='userdata', | ||
name='postcode', | ||
field=models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
migrations.AlterField( | ||
model_name='userdata', | ||
name='town', | ||
field=models.CharField(blank=True, max_length=255, null=True), | ||
), | ||
] |
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.