Skip to content

Commit

Permalink
Resolved: Reverted changes to 004_squashed.py and alterted migrations…
Browse files Browse the repository at this point in the history
… for close_date
  • Loading branch information
APiligrim committed Feb 24, 2021
1 parent e5dcb26 commit 17267d2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions tcms/testruns/migrations/0004_squashed.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ class Migration(migrations.Migration):
("run_id", models.AutoField(primary_key=True, serialize=False)),
("start_date", models.DateTimeField(auto_now_add=True, db_index=True)),
(
"close_date",
"stop_date",
models.DateTimeField(blank=True, db_index=True, null=True),
),
("summary", models.TextField()),
Expand Down Expand Up @@ -394,7 +394,7 @@ class Migration(migrations.Migration):
models.DateTimeField(blank=True, db_index=True, editable=False),
),
(
"close_date",
"stop_date",
models.DateTimeField(blank=True, db_index=True, null=True),
),
("summary", models.TextField()),
Expand Down Expand Up @@ -480,4 +480,4 @@ class Migration(migrations.Migration):
"get_latest_by": "history_date",
},
),
]
]
4 changes: 2 additions & 2 deletions tcms/testruns/migrations/0012_test_execusion_add_fields.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,12 @@ class Migration(migrations.Migration):
migrations.AlterField(
model_name="testexecution",
name="stop_date",
field=models.DateTimeField(blank=True, db_index=True, null=True),
field=models.DateTimeField(db_index=True, null=True),
),
migrations.AlterField(
model_name="historicaltestexecution",
name="stop_date",
field=models.DateTimeField(blank=True, db_index=True, null=True),
field=models.DateTimeField(db_index=True, null=True),
),
migrations.AddField(
model_name="historicaltestexecution",
Expand Down

0 comments on commit 17267d2

Please sign in to comment.