Skip to content

Commit

Permalink
revert v0.0.23 migration
Browse files Browse the repository at this point in the history
  • Loading branch information
ansibleguy committed Jul 20, 2024
1 parent e555188 commit 80ac002
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 19 deletions.
18 changes: 0 additions & 18 deletions src/ansibleguy-webui/aw/migrations/0009_v0_0_23.py

This file was deleted.

2 changes: 1 addition & 1 deletion src/ansibleguy-webui/aw/model/job.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class Job(BaseJob):
execution_prompts_max_len = 5000
execution_prompt_separator = ';'
execution_prompt_arg_separator = '#'
execution_prompts = models.CharField(max_length=execution_prompts_max_len, default='limit,mode_check,tags')
execution_prompts = models.CharField(max_length=execution_prompts_max_len, **DEFAULT_NONE)

def __str__(self) -> str:
limit = '' if self.limit is None else f' [{self.limit}]'
Expand Down

0 comments on commit 80ac002

Please sign in to comment.