/usr/share/phppgadmin/sql/reports-pgsql.sql is in phppgadmin 5.0.4-1.
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 22 23 24 25 26 | -- SQL script to create reports database for PostgreSQL
--
-- To run, type: psql template1 < reports-pgsql.sql
--
-- $Id: reports-pgsql.sql,v 1.4 2007/04/16 11:02:36 mr-russ Exp $
CREATE DATABASE phppgadmin;
\connect phppgadmin
CREATE TABLE ppa_reports (
report_id SERIAL,
report_name varchar(255) NOT NULL,
db_name varchar(255) NOT NULL,
date_created date DEFAULT NOW() NOT NULL,
created_by varchar(255) NOT NULL,
descr text,
report_sql text NOT NULL,
paginate boolean NOT NULL,
PRIMARY KEY (report_id)
);
-- Allow everyone to do everything with reports. This may
-- or may not be what you want.
GRANT SELECT,INSERT,UPDATE,DELETE ON ppa_reports TO PUBLIC;
GRANT SELECT,UPDATE ON ppa_reports_report_id_seq TO PUBLIC;
|