Skip to content

Commit

Permalink
changed comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashutosh619-sudo committed Oct 12, 2023
1 parent fdd7a9e commit 609594d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions scripts/sql/scripts/019-add-onboarding-state.sql
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ where w.onboarding_state = 'CONNECTION';

begin; -- Start Transaction Block

-- Count of all workspaces where qbo creds are present, configuration is present and general mappings are present
-- Count of all workspaces where netsuite are present, configuration is present and general mappings are present
select
'QC=TRUE, C=TRUE, GM=TRUE' as setting, count(*)
from all_settings_view
Expand All @@ -35,7 +35,7 @@ where id in (
configuration_id is not null and general_mappings_id is not null and netsuite_creds_id is not null
);

-- Count of all workspaces where qbo creds are present, configuration is present and general mappings are not present
-- Count of all workspaces where netsuite are present, configuration is present and general mappings are not present
select
'QC=TRUE, C=TRUE, GM=FALSE' as settings, count(*)
from all_settings_view
Expand All @@ -55,7 +55,7 @@ where id in (
);


-- Count of all workspaces where qbo creds are present, configuration is not present and general mappings are not present
-- Count of all workspaces where netsuite are present, configuration is not present and general mappings are not present
select
'QC=TRUE, C=FALSE, GM=FALSE' as settings, count(*)
from all_settings_view
Expand All @@ -75,7 +75,7 @@ where id in (
);


-- Count of all workspaces where qbo creds is not present, configuration is present and general mappings is present
-- Count of all workspaces where netsuite is not present, configuration is present and general mappings is present
select
'QC=FALSE, C=TRUE, GM=TRUE' as settings, count(*)
from all_settings_view
Expand All @@ -95,7 +95,7 @@ where id in (
);


-- Count of all workspaces where qbo creds are not present, configuration is present and general mappings are not present
-- Count of all workspaces where netsuite are not present, configuration is present and general mappings are not present
select
'QC=FALSE, C=TRUE, GM=FALSE' as settings, count(*)
from all_settings_view
Expand Down

0 comments on commit 609594d

Please sign in to comment.