Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Sep 23, 2024
1 parent 6326481 commit 544c299
Showing 1 changed file with 9 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,30 +4,29 @@


class Migration(migrations.Migration):

dependencies = [
('courses', '0055_rename_programrequirement_index'),
("courses", "0055_rename_programrequirement_index"),
]

operations = [
migrations.AddField(
model_name='program',
name='end_date',
model_name="program",
name="end_date",
field=models.DateField(blank=True, db_index=True, null=True),
),
migrations.AddField(
model_name='program',
name='enrollment_end',
model_name="program",
name="enrollment_end",
field=models.DateTimeField(blank=True, db_index=True, null=True),
),
migrations.AddField(
model_name='program',
name='enrollment_start',
model_name="program",
name="enrollment_start",
field=models.DateTimeField(blank=True, db_index=True, null=True),
),
migrations.AddField(
model_name='program',
name='start_date',
model_name="program",
name="start_date",
field=models.DateField(blank=True, db_index=True, null=True),
),
]

0 comments on commit 544c299

Please sign in to comment.