/usr/share/pgmodeler/schemas/sql/dbmodel.sch is in pgmodeler-common 0.9.1~beta-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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 | # SQL definition for database model
# PostgreSQL Version: 9.x
# CAUTION: Do not modify this file unless you know what you are doing.
# Code generation can be broken if incorrect changes are made.
[-- Database generated with pgModeler (PostgreSQL Database Modeler).] $br
[-- pgModeler version: ] {pgmodeler-ver} $br
[-- PostgreSQL version: ] {pgsql-ver} $br
[-- Project Site: pgmodeler.com.br] $br
[-- Model Author: ]
%if {author} %then
{author}
%else
---
%end
$br $br
%if {function} %then
[SET check_function_bodies = false;] $br
[-- ddl-end --] $br $br
%end
%if {export-to-file} %then
%if {role} %then {role} %end
%if {tablespace} %then
[-- Tablespaces creation must be done outside an multicommand file.] $br
[-- These commands were put in this file only for convenience.] $br
{tablespace} $br
%end
$br
[-- Database creation must be done outside an multicommand file.] $br
[-- These commands were put in this file only for convenience.] $br
{database} $br
%end
%if {schema} %then
{schema}
[SET search_path TO ] {search-path}; $br
[-- ddl-end --] $br $br
%end
%if {shell-types} %then {shell-types} %end
%if {objects} %then {objects} %end
%if {permission} %then {permission} %end
$br
|