Skip to content

Commit

Permalink
Fix migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ericholscher committed Oct 1, 2020
1 parent 9c039b4 commit 9e66122
Showing 1 changed file with 7 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,18 +14,19 @@ class Migration(migrations.Migration):
name='environmentvariable',
options={'get_latest_by': 'modified', 'ordering': ('-modified', '-created')},
),
migrations.RemoveField(
migrations.AlterField(
model_name='feature',
name='default_true',
field=models.BooleanField(default=False, verbose_name='Default all past projects to True'),
),
migrations.AddField(
migrations.RenameField(
model_name='feature',
name='future_default_true',
field=models.BooleanField(default=False, verbose_name='Default all future projects to True'),
old_name='default_true',
new_name='past_default_true',
),
migrations.AddField(
model_name='feature',
name='past_default_true',
field=models.BooleanField(default=False, verbose_name='Default all past projects to True'),
name='future_default_true',
field=models.BooleanField(default=False, verbose_name='Default all future projects to True'),
),
]

0 comments on commit 9e66122

Please sign in to comment.