Skip to content

Commit

Permalink
#1872 Updates the selection criteria columns for the implicit filteri…
Browse files Browse the repository at this point in the history
…ngs of swing client

Updates the selection criteria columns for the implicit filterings of
swing client

FRESH-2694 #1872
  • Loading branch information
metas-mk committed Jun 22, 2017
1 parent c14b245 commit 1cea0e7
Showing 1 changed file with 17 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
-- 2017-06-22T18:02:24.657
-- Setting the implicit selection criteria for default filters
update ad_column
set isSelectionColumn = 'Y', updated = '2017-06-22', updatedby = 99
where ad_column_id in
( select ad_column_id
from ad_column
where true
and lower(columnname) in (
'description',
'documentno',
'name',
'value'
)
and isSelectionColumn = 'N'
)
;

0 comments on commit 1cea0e7

Please sign in to comment.