Skip to content

Commit

Permalink
Add: Rename File in Migrations for Text Execusion class
Browse files Browse the repository at this point in the history
  • Loading branch information
APiligrim committed Feb 17, 2021
1 parent f523e2c commit 8a1679a
Showing 1 changed file with 16 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,24 @@ class Migration(migrations.Migration):
]

operations = [
migrations.RemoveField(
model_name='historicaltestexecution',
name='close_date',
migrations.RenameField(
model_name="historicaltestexecution",
old_name="close_date",
new_name="stop_date",
),
migrations.RemoveField(
model_name='testexecution',
name='close_date',
migrations.RenameField(
model_name="testexecution",
old_name="close_date",
new_name="stop_date",
),
# migrations.RemoveField(
# model_name='historicaltestexecution',
# name='close_date',
# ),
# migrations.RemoveField(
# model_name='testexecution',
# name='close_date',
# ),
migrations.AddField(
model_name='historicaltestexecution',
name='start_date',
Expand Down

0 comments on commit 8a1679a

Please sign in to comment.