diff --git a/google/cloud/security/common/data_access/sql_queries/create_tables.py b/google/cloud/security/common/data_access/sql_queries/create_tables.py index 6a54fdde8a..912c7826b4 100755 --- a/google/cloud/security/common/data_access/sql_queries/create_tables.py +++ b/google/cloud/security/common/data_access/sql_queries/create_tables.py @@ -73,3 +73,12 @@ PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; """ + +CREATE_GSUITE_ACCOUNT_GROUPS_TABLE = """ + CREATE TABLE `{0}` ( + `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, + `group_id` varchar(255) DEFAULT NULL, + `group_email` varchar(255) DEFAULT NULL, + PRIMARY KEY (`id`) + ) ENGINE=InnoDB DEFAULT CHARSET=utf8; +"""