Skip to content
Snippets Groups Projects
Commit 1e15e183 authored by sks444's avatar sks444 Committed by Shrikrishna Singh
Browse files

Fix migrations file

parent ca3cc166
No related branches found
No related tags found
No related merge requests found
# Generated by Django 2.2.24 on 2021-11-10 13:24
from django.db import migrations, models
class Migration(migrations.Migration):
dependencies = [
('application_projects', '0041_payment_requests_cleanup'),
]
operations = [
migrations.AddField(
model_name='project',
name='external_projectid',
field=models.CharField(blank=True, help_text='ID of this project at integrated payment service.', max_length=30),
),
]
# Generated by Django 2.2.24 on 2021-11-22 23:35 # Generated by Django 2.2.24 on 2021-12-14 17:37
from django.db import migrations, models from django.db import migrations, models
...@@ -6,7 +6,7 @@ from django.db import migrations, models ...@@ -6,7 +6,7 @@ from django.db import migrations, models
class Migration(migrations.Migration): class Migration(migrations.Migration):
dependencies = [ dependencies = [
('application_projects', '0042_add_external_project_id_field'), ('application_projects', '0044_add_resubmitted_status'),
] ]
operations = [ operations = [
...@@ -15,4 +15,9 @@ class Migration(migrations.Migration): ...@@ -15,4 +15,9 @@ class Migration(migrations.Migration):
name='external_id', name='external_id',
field=models.CharField(blank=True, help_text='ID of this deliverable at integrated payment service.', max_length=30), field=models.CharField(blank=True, help_text='ID of this deliverable at integrated payment service.', max_length=30),
), ),
migrations.AddField(
model_name='project',
name='external_projectid',
field=models.CharField(blank=True, help_text='ID of this project at integrated payment service.', max_length=30),
),
] ]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment