-
Notifications
You must be signed in to change notification settings - Fork 4
070 #21
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
070 #21
Changes from all commits
3a34a10
23b610a
58ef91c
afe8e96
963f7af
03e36e6
811b401
95864a0
381c743
5a586c4
34175f2
9ef19a1
e89d2b1
b0d1c05
5801f31
fb24a1c
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -27,3 +27,7 @@ ALTER TABLE executions ADD COLUMN stdout TEXT; | |||||
|
|
||||||
| -- Add stderr column if it doesn't exist | ||||||
| ALTER TABLE executions ADD COLUMN stderr TEXT; | ||||||
|
|
||||||
| -- Migration: Add execution_tool column to indicate which execution engine was used | ||||||
| -- Values: bolt, ansible | ||||||
| ALTER TABLE executions ADD COLUMN execution_tool TEXT DEFAULT 'bolt'; | ||||||
|
||||||
| ALTER TABLE executions ADD COLUMN execution_tool TEXT DEFAULT 'bolt'; | |
| ALTER TABLE executions ADD COLUMN execution_tool TEXT DEFAULT 'bolt' CHECK(execution_tool IN ('bolt', 'ansible')); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Typo in version history description: "Used classed aware hiera lookups" should be "Class-aware Hiera lookups" or "Uses class-aware Hiera lookups".