-
Notifications
You must be signed in to change notification settings - Fork 894
feat: add inactivity cleanup and failure cleanup configuration fields to Template Schedule Form #7402
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: add inactivity cleanup and failure cleanup configuration fields to Template Schedule Form #7402
Changes from 22 commits
744e476
e6e1ec6
c049e9e
537ced7
cd6a485
6c984fa
57a9de7
07cb07c
7091fc1
e565225
3d9f6f5
abab4c8
ad37203
240f297
be512ee
8536b75
a05eb6c
0478e07
bba4722
c76a0f4
9db6b13
a2a38f0
9fa9c5b
43a2267
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE ONLY templates DROP COLUMN IF EXISTS failure_ttl; | ||
ALTER TABLE ONLY templates DROP COLUMN IF EXISTS inactivity_ttl; | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ALTER TABLE ONLY templates ADD COLUMN IF NOT EXISTS failure_ttl BIGINT NOT NULL DEFAULT 0; | ||
ALTER TABLE ONLY templates ADD COLUMN IF NOT EXISTS inactivity_ttl BIGINT NOT NULL DEFAULT 0; | ||
Kira-Pilot marked this conversation as resolved.
Show resolved
Hide resolved
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.