Skip to content

Commit

Permalink
store direct call request in action details
Browse files Browse the repository at this point in the history
  • Loading branch information
mcalmer committed Oct 17, 2024
1 parent 3641ba9 commit 7fe269c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions schema/spacewalk/common/tables/rhnActionApplyStates.sql
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ CREATE TABLE rhnActionApplyStates
DEFAULT ('N') NOT NULL
CONSTRAINT rhn_act_apply_states_test_ck
CHECK (test in ('Y','N')),
direct CHAR(1)
DEFAULT ('N') NOT NULL
CONSTRAINT rhn_act_apply_states_direct_ck
CHECK (test in ('Y','N')),
created TIMESTAMPTZ
DEFAULT (current_timestamp) NOT NULL,
modified TIMESTAMPTZ
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
ALTER TABLE rhnActionApplyStates ADD COLUMN IF NOT EXISTS direct CHAR(1) DEFAULT ('N') NOT NULL CONSTRAINT rhn_act_apply_states_direct_ck CHECK (test in ('Y', 'N'));

0 comments on commit 7fe269c

Please sign in to comment.