File: table.sch

package info (click to toggle)
pgmodeler 1.2.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,160 kB
  • sloc: cpp: 99,216; xml: 27; sh: 15; makefile: 6
file content (134 lines) | stat: -rw-r--r-- 1,955 bytes parent folder | download | duplicates (2)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
# SQL definition for tables
# CAUTION: Do not modify this file unless you know what you are doing.
# Code generation can be broken if incorrect changes are made.

@include "ddlend"
@include "objlabel"
@include "prependedsql"

[CREATE]

%if {unlogged} %then
	[ UNLOGGED]
%end

[ TABLE ] {name}

%if {partitioned-table} %then
	$br [PARTITION OF ] {partitioned-table} $sp
%end

%if %not {partitioned-table} %then

	[ (] $br

	%if {copy-table} %then
		$tb LIKE $sp {copy-table}

		%if %not {gen-alter-cmds} %then
			%if {columns} %or {constraints} %then
				[,]
			%end
		%end

		$br
	%end

	%if %not {gen-alter-cmds} %then
		%if {columns} %then
			{columns}
		%end

		%if {inh-columns} %then
			{inh-columns}
		%end

		%if {constraints} %then
			{constraints}
		%end
	%end


	%if %not {constraints} %then
		$br
	%end

	)
%else
	%if %not {gen-alter-cmds} %and {partitioned-table} %and {constraints} %then
		[ (] $br {constraints} $br [)]
	%end
%end

%if {partitioned-table} %then
	%if {partition-bound-expr} %then
		$br [FOR VALUES ] {partition-bound-expr}
	%else
		DEFAULT
	%end
%end

%if {partitioning} %then
	$br [PARTITION BY ] {partitioning} [ (] {partitionkey} [)]
%end

%if {ancestor-table} %then
	$br [ INHERITS(] {ancestor-table} [)]
%end

%if ({pgsql-ver} <=f "11.0") %and {oids} %then
	$br [WITH ( OIDS = TRUE )]
%end

%if {tablespace} %then
	$br [TABLESPACE ] {tablespace}
%end

;

{ddl-end}

%if {gen-alter-cmds} %then
	%if {columns} %then
		$br {columns}
	%end

	%if {constraints} %then
		$br {constraints}
	%end
%end

%if {comment} %then
	{comment}
%end

%if {cols-comment} %then
	{cols-comment}
%end

%if {owner} %then
	{owner}
%end

%if {rls-enabled} %then
	[ALTER TABLE ] {name} [ ENABLE ROW LEVEL SECURITY;]

	{ddl-end}

	%if {rls-forced} %then
		[ALTER TABLE ] {name} [ FORCE ROW LEVEL SECURITY;]

		{ddl-end}
	%end
%end

%if {appended-sql} %then
	{appended-sql}
	{ddl-end}
%end

%if {initial-data} %then
	$br {initial-data} $br
%end

$br