Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
MaarchCourrier
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Redmine
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Harbor Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Maarch
MaarchCourrier
Commits
fa6b9a95
Commit
fa6b9a95
authored
13 years ago
by
Cyril Vazquez
Browse files
Options
Downloads
Patches
Plain Diff
Notifications: table names
parent
aa71d600
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/trunk/structure.sql
+10
-8
10 additions, 8 deletions
core/trunk/structure.sql
with
10 additions
and
8 deletions
core/trunk/structure.sql
+
10
−
8
View file @
fa6b9a95
...
...
@@ -1179,38 +1179,38 @@ WITH (OIDS=FALSE);
-- modules/notes/sql/structure/notifications.postgresql.sql
CREATE
SEQUENCE
event_stack_seq
CREATE
SEQUENCE
notif_
event_stack_seq
INCREMENT
1
MINVALUE
1
MAXVALUE
9223372036854775807
START
1
CACHE
1
;
CREATE
TABLE
event_stack
CREATE
TABLE
notif_
event_stack
(
system_id
bigint
NOT
NULL
DEFAULT
nextval
(
'event_stack_seq'
::
regclass
),
system_id
bigint
NOT
NULL
DEFAULT
nextval
(
'
notif_
event_stack_seq'
::
regclass
),
ta_sid
bigint
NOT
NULL
,
table_name
character
varying
(
32
)
NOT
NULL
,
record_id
character
varying
(
255
)
NOT
NULL
,
event_date
timestamp
without
time
zone
NOT
NULL
,
exec_date
timestamp
without
time
zone
NOT
NULL
,
exec_result
character
varying
(
50
)
NOT
NULL
,
CONSTRAINT
event_stack_pkey
PRIMARY
KEY
(
system_id
)
CONSTRAINT
notif_
event_stack_pkey
PRIMARY
KEY
(
system_id
)
)
WITH
(
OIDS
=
FALSE
);
CREATE
SEQUENCE
email_stack_seq
CREATE
SEQUENCE
notif_
email_stack_seq
INCREMENT
1
MINVALUE
1
MAXVALUE
9223372036854775807
START
1
CACHE
1
;
CREATE
TABLE
email_stack
CREATE
TABLE
notif_
email_stack
(
system_id
bigint
NOT
NULL
DEFAULT
nextval
(
'email_stack_seq'
::
regclass
),
system_id
bigint
NOT
NULL
DEFAULT
nextval
(
'
notif_
email_stack_seq'
::
regclass
),
sender
character
varying
(
255
)
NOT
NULL
,
reply_to
character
varying
(
255
),
recipient
character
varying
(
2000
)
NOT
NULL
,
...
...
@@ -1220,9 +1220,11 @@ CREATE TABLE email_stack
html_body
text
,
text_body
text
,
charset
character
varying
(
50
)
NOT
NULL
,
attachments
character
varying
(
2000
),
module
character
varying
(
50
)
NOT
NULL
,
exec_date
timestamp
without
time
zone
,
exec_result
character
varying
(
50
),
CONSTRAINT
email_stack_pkey
PRIMARY
KEY
(
system_id
)
CONSTRAINT
notif_
email_stack_pkey
PRIMARY
KEY
(
system_id
)
)
WITH
(
OIDS
=
FALSE
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment