Skip to content

Commit 80ac002

Browse files
committed
revert v0.0.23 migration
1 parent e555188 commit 80ac002

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

src/ansibleguy-webui/aw/migrations/0009_v0_0_23.py

-18
This file was deleted.

src/ansibleguy-webui/aw/model/job.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ class Job(BaseJob):
108108
execution_prompts_max_len = 5000
109109
execution_prompt_separator = ';'
110110
execution_prompt_arg_separator = '#'
111-
execution_prompts = models.CharField(max_length=execution_prompts_max_len, default='limit,mode_check,tags')
111+
execution_prompts = models.CharField(max_length=execution_prompts_max_len, **DEFAULT_NONE)
112112

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

0 commit comments

Comments
 (0)