CREATE TABLE sec_session_properties ( session_id int8 NOT NULL, module varchar(50) NOT NULL, property_name varchar(50) NOT NULL, property_value text(-5), secure_p bool, last_hit integer NOT NULL, PRIMARY KEY (session_id,module,property_name) ); CREATE INDEX sec_property_names ON sec_session_properties (property_name); -- Table size: 1,507,328 bytes -- Table rows: 11,509