Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dolibarr
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Container Registry
Model registry
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Software_Artifact_Infrastructure_Repository
dolibarr
Commits
28b229c8
Commit
28b229c8
authored
9 years ago
by
Florian Henry
Browse files
Options
Downloads
Patches
Plain Diff
FIX: #3916
parent
d3d62f7d
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
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
+9
-9
9 additions, 9 deletions
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
with
9 additions
and
9 deletions
htdocs/install/mysql/migration/3.8.0-3.9.0.sql
+
9
−
9
View file @
28b229c8
...
...
@@ -102,20 +102,20 @@ ALTER TABLE llx_ecm_files ADD UNIQUE INDEX uk_ecm_files (label, entity);
--ALTER TABLE llx_ecm_files ADD UNIQUE INDEX uk_ecm_files_fullpath(fullpath);
ALTER
TABLE
llx_product
ADD
COLUMN
onportal
tiny
int
DEFAULT
0
AFTER
tobuy
;
ALTER
TABLE
llx_product
ADD
COLUMN
onportal
small
int
DEFAULT
0
AFTER
tobuy
;
ALTER
TABLE
llx_user
ADD
COLUMN
employee
tiny
int
DEFAULT
1
;
ALTER
TABLE
llx_user
ADD
COLUMN
employee
small
int
DEFAULT
1
;
CREATE
TABLE
IF
NOT
EXISTS
llx_c_hrm_function
(
rowid
integer
PRIMARY
KEY
,
pos
tiny
int
DEFAULT
0
NOT
NULL
,
pos
small
int
DEFAULT
0
NOT
NULL
,
code
varchar
(
16
)
NOT
NULL
,
label
varchar
(
50
),
c_level
tiny
int
DEFAULT
0
NOT
NULL
,
active
tiny
int
DEFAULT
1
NOT
NULL
c_level
small
int
DEFAULT
0
NOT
NULL
,
active
small
int
DEFAULT
1
NOT
NULL
)
ENGINE
=
innodb
;
INSERT
INTO
llx_c_hrm_function
(
rowid
,
pos
,
code
,
label
,
c_level
,
active
)
VALUES
(
1
,
5
,
'EXECBOARD'
,
'Executive board'
,
0
,
1
);
...
...
@@ -131,10 +131,10 @@ INSERT INTO llx_c_hrm_function (rowid, pos, code, label, c_level, active) VALUES
CREATE
TABLE
IF
NOT
EXISTS
llx_c_hrm_department
(
rowid
integer
PRIMARY
KEY
,
pos
tiny
int
DEFAULT
0
NOT
NULL
,
pos
small
int
DEFAULT
0
NOT
NULL
,
code
varchar
(
16
)
NOT
NULL
,
label
varchar
(
50
),
active
tiny
int
DEFAULT
1
NOT
NULL
active
small
int
DEFAULT
1
NOT
NULL
)
ENGINE
=
innodb
;
INSERT
INTO
llx_c_hrm_department
(
rowid
,
pos
,
code
,
label
,
active
)
VALUES
(
1
,
5
,
'MANAGEMENT'
,
'Management'
,
1
);
...
...
@@ -173,7 +173,7 @@ CREATE TABLE IF NOT EXISTS llx_establishment (
fk_user_mod
integer
NOT
NULL
,
datec
datetime
NOT
NULL
,
tms
timestamp
NOT
NULL
,
status
tiny
int
DEFAULT
1
status
small
int
DEFAULT
1
)
ENGINE
=
InnoDB
;
...
...
@@ -255,7 +255,7 @@ CREATE TABLE llx_product_pricerules
var_percent
FLOAT
NOT
NULL
,
-- Price variation over based price
var_min_percent
FLOAT
NOT
NULL
-- Min price discount over general price
);
ALTER
TABLE
llx_product
ADD
COLUMN
price_autogen
TINYINT
(
1
)
DEFAULT
0
;
ALTER
TABLE
llx_product
ADD
COLUMN
price_autogen
smallint
DEFAULT
0
;
ALTER
TABLE
llx_product_pricerules
ADD
CONSTRAINT
unique_level
UNIQUE
(
level
);
...
...
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