This file is indexed.

/usr/share/fusionforge/plugins/blocks/db/blocks-init.sql is in fusionforge-plugin-blocks 6.0.3+20151023-1ubuntu1.

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
CREATE SEQUENCE plugin_blocks_pk_seq
    START WITH 1
    INCREMENT BY 1
    MAXVALUE 2147483647
    NO MINVALUE
    CACHE 1;

CREATE TABLE plugin_blocks (
	id integer DEFAULT nextval('plugin_blocks_pk_seq'::text) NOT NULL,
	group_id integer,
	name text,
	content text,
	status integer
) ;