This file is indexed.

/usr/share/pegasus/sql/create-my-init.sql is in pegasus-wms 4.0.1+dfsg-8.

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
--
-- schema: all
-- driver: MySQL 4.0.*
-- $Revision: 1653 $
--

CREATE TABLE sequences (
        name            VARCHAR(32) NOT NULL,
        currval         BIGINT DEFAULT 0,

        CONSTRAINT      pk_sequences PRIMARY KEY(name)
) type=InnoDB;

CREATE TABLE pegasus_schema (
        name            VARCHAR(64) NOT NULL,
        catalog         VARCHAR(16),
        version         FLOAT,
        creator         VARCHAR(32),
        creation        DATETIME,

        CONSTRAINT      pk_pegasus_schema PRIMARY KEY(name)
) type=InnoDB;