Added current high level step to saved command runs, user inputs and dev steps because we skip high level steps in one way and then in the coding step, we skip them with these functions. REFACTOR eventually so that we skip everything with saved steps since the beginning of the project.

This commit is contained in:
Zvonimir Sabljic
2023-09-12 20:57:11 +02:00
parent 6a46851b20
commit 43d8c5511d
4 changed files with 17 additions and 5 deletions

View File

@@ -11,6 +11,7 @@ class UserInputs(BaseModel):
query = TextField(null=True)
user_input = TextField(null=True)
previous_step = ForeignKeyField('self', null=True, column_name='previous_step')
high_level_step = CharField(null=True)
class Meta:
db_table = 'user_inputs'