Skip to content

Commit

Permalink
ACT-688 Reworked migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
nasirhjafri committed Apr 7, 2020
1 parent ac27423 commit a5ead94
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Generated by Django 2.2.10 on 2020-04-03 09:18
# Generated by Django 2.2.10 on 2020-04-07 08:46

from django.db import migrations, models
import django.db.models.deletion
Expand All @@ -7,7 +7,7 @@
class Migration(migrations.Migration):

dependencies = [
('workflow', '0014_auto_20200403_0218'),
('workflow', '0018_auto_20200407_0146'),
('formlibrary', '0002_auto_20200215_0114'),
]

Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
# Generated by Django 2.2.10 on 2020-04-03 09:18
# Generated by Django 2.2.10 on 2020-04-07 08:46

from django.db import migrations, models
import django.db.models.deletion


class Migration(migrations.Migration):

dependencies = [
('workflow', '0013_auto_20200329_0551'),
('workflow', '0017_merge_20200403_0643'),
]

operations = [
Expand Down Expand Up @@ -128,14 +127,4 @@ class Migration(migrations.Migration):
name='individual_type',
field=models.CharField(blank=True, help_text='i.e. Farmer, Association, Student, Govt, etc.', max_length=255, null=True, verbose_name='Type of direct individuals'),
),
migrations.AlterField(
model_name='historicalprojectagreement',
name='project_status',
field=models.ForeignKey(blank=True, db_constraint=False, null=True, on_delete=django.db.models.deletion.DO_NOTHING, related_name='+', to='workflow.ProjectStatus', verbose_name='Project Status'),
),
migrations.AlterField(
model_name='projectagreement',
name='project_status',
field=models.ForeignKey(blank=True, null=True, on_delete=django.db.models.deletion.SET_NULL, to='workflow.ProjectStatus', verbose_name='Project Status'),
),
]

0 comments on commit a5ead94

Please sign in to comment.