/usr/share/globus/gram-audit/audit-mysql-1.sql is in globus-gram-audit 4.4-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | -- ----------------------------------------------------
-- DDL Statements for gram audit database schema
-- ----------------------------------------------------
create table gram_audit_table (
job_grid_id varchar(256),
local_job_id varchar(512),
subject_name varchar(256) not null,
username varchar(16) not null,
idempotence_id varchar(128),
creation_time varchar(40) not null,
queued_time varchar(40),
stage_in_grid_id varchar(256),
stage_out_grid_id varchar(256),
clean_up_grid_id varchar(256),
globus_toolkit_version varchar(16) not null,
resource_manager_type varchar(16) not null,
job_description text not null,
success_flag varchar(5) not null,
finished_flag varchar(5) not null,
PRIMARY KEY(job_grid_id(256)));
|