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
9a87e79d
Commit
9a87e79d
authored
9 years ago
by
Damien
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #3223 create email_signatures table
parent
3161e68e
No related branches found
No related tags found
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
core/trunk/core/core_tables.php
+3
-0
3 additions, 0 deletions
core/trunk/core/core_tables.php
core/trunk/sql/160.sql
+829
-0
829 additions, 0 deletions
core/trunk/sql/160.sql
core/trunk/sql/structure.sql
+18
-0
18 additions, 0 deletions
core/trunk/sql/structure.sql
with
850 additions
and
0 deletions
core/trunk/core/core_tables.php
+
3
−
0
View file @
9a87e79d
...
...
@@ -110,6 +110,9 @@ if(! defined('LISTMODELS_CONTENT_TABLE')) {
if
(
!
defined
(
'USERS_TABLE'
))
{
define
(
'USERS_TABLE'
,
'users'
);
}
if
(
!
defined
(
'EMAIL_SIGNATURES_TABLE'
))
{
define
(
'EMAIL_SIGNATURES_TABLE'
,
'email_signatures'
);
}
if
(
!
defined
(
'USER_BASKETS_SECONDARY_TABLE'
))
{
define
(
'USER_BASKETS_SECONDARY_TABLE'
,
'user_baskets_secondary'
);
}
This diff is collapsed.
Click to expand it.
core/trunk/sql/160.sql
0 → 100644
+
829
−
0
View file @
9a87e79d
This diff is collapsed.
Click to expand it.
core/trunk/sql/structure.sql
+
18
−
0
View file @
9a87e79d
...
...
@@ -914,6 +914,24 @@ CREATE TABLE groupbasket_redirect
)
WITH
(
OIDS
=
FALSE
);
CREATE
SEQUENCE
email_signatures_id_seq
INCREMENT
1
MINVALUE
1
MAXVALUE
9223372036854775807
START
7
CACHE
1
;
CREATE
TABLE
email_signatures
(
id
bigint
NOT
NULL
DEFAULT
nextval
(
'email_signatures_id_seq'
::
regclass
),
user_id
character
varying
(
255
)
NOT
NULL
,
html_body
text
NOT
NULL
,
title
character
varying
NOT
NULL
,
CONSTRAINT
email_signatures_pkey
PRIMARY
KEY
(
id
)
)
WITH
(
OIDS
=
FALSE
);
-- modules/folder/sql/structure/folder.postgresql.sql
...
...
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