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
d7f0993d
"src/git@labs.maarch.org:maarch/MaarchCourrier.git" did not exist on "ce9c83513c9ef99017eb7be6464e73480f6b5446"
Commit
d7f0993d
authored
7 years ago
by
Alex ORLUC
Browse files
Options
Downloads
Patches
Plain Diff
FEAT #5582 add new column basket_res_order
parent
18e8268d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sql/160_to_170.sql
+4
-0
4 additions, 0 deletions
sql/160_to_170.sql
sql/structure.sql
+1
-0
1 addition, 0 deletions
sql/structure.sql
with
5 additions
and
0 deletions
sql/160_to_170.sql
+
4
−
0
View file @
d7f0993d
...
...
@@ -282,6 +282,10 @@ INSERT INTO user_signatures (user_id, signature_label, signature_path, signature
UPDATE
parameters
SET
param_value_int
=
'1706'
WHERE
id
=
'database_version'
;
/** ADD NEW COLUMN FOR ORDER RES IN BASKETS **/
ALTER
TABLE
baskets
DROP
COLUMN
IF
EXISTS
basket_res_order
;
ALTER
TABLE
baskets
ADD
COLUMN
basket_res_order
character
varying
(
255
);
/** DELETES OLD TABLES **/
DROP
TABLE
IF
EXISTS
adr_business
;
DROP
TABLE
IF
EXISTS
adr_log
;
...
...
This diff is collapsed.
Click to expand it.
sql/structure.sql
+
1
−
0
View file @
d7f0993d
...
...
@@ -521,6 +521,7 @@ CREATE TABLE baskets
is_folder_basket
character
(
1
)
NOT
NULL
default
'N'
::
bpchar
,
enabled
character
(
1
)
NOT
NULL
DEFAULT
'Y'
::
bpchar
,
basket_order
integer
,
basket_res_order
character
varying
(
255
),
flag_notif
character
varying
(
1
),
except_notif
text
,
CONSTRAINT
baskets_pkey
PRIMARY
KEY
(
coll_id
,
basket_id
)
...
...
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