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
ca51febf
Commit
ca51febf
authored
8 years ago
by
Alex ORLUC
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #000 add thes
parent
c129d07c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
core/trunk/sql/160.sql
+33
-1
33 additions, 1 deletion
core/trunk/sql/160.sql
with
33 additions
and
1 deletion
core/trunk/sql/160.sql
+
33
−
1
View file @
ca51febf
...
...
@@ -875,4 +875,36 @@ ALTER TABLE mlb_coll_ext DROP COLUMN IF EXISTS recommendation_limit_date;
ALTER
TABLE
mlb_coll_ext
ADD
COLUMN
recommendation_limit_date
timestamp
without
time
zone
default
NULL
;
-- Change date_note type
ALTER
TABLE
notes
ALTER
COLUMN
date_note
TYPE
timestamp
without
time
zone
;
\ No newline at end of file
ALTER
TABLE
notes
ALTER
COLUMN
date_note
TYPE
timestamp
without
time
zone
;
CREATE
SEQUENCE
thesaurus_id_seq
INCREMENT
1
MINVALUE
1
MAXVALUE
9223372036854775807
START
1
CACHE
1
;
DROP
TABLE
thesaurus
;
CREATE
TABLE
thesaurus
(
thesaurus_id
bigint
NOT
NULL
DEFAULT
nextval
(
'thesaurus_id_seq'
::
regclass
),
thesaurus_name
character
varying
(
255
)
NOT
NULL
,
thesaurus_description
text
,
thesaurus_name_associate
character
varying
(
255
),
thesaurus_parent_id
character
varying
(
255
),
creation_date
timestamp
without
time
zone
,
CONSTRAINT
thesaurus_pkey
PRIMARY
KEY
(
thesaurus_id
)
)
WITH
(
OIDS
=
FALSE
);
CREATE
TABLE
thesaurus_res
(
res_id
bigint
NOT
NULL
,
thesaurus_id
bigint
NOT
NULL
)
WITH
(
OIDS
=
FALSE
);
\ No newline at end of file
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