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
6769cbbd
Commit
6769cbbd
authored
12 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Increase size of ref for products
parent
761f8417
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
htdocs/install/mysql/migration/3.2.0-3.3.0.sql
+6
-1
6 additions, 1 deletion
htdocs/install/mysql/migration/3.2.0-3.3.0.sql
htdocs/install/mysql/tables/llx_product.sql
+2
-2
2 additions, 2 deletions
htdocs/install/mysql/tables/llx_product.sql
with
8 additions
and
3 deletions
htdocs/install/mysql/migration/3.2.0-3.3.0.sql
+
6
−
1
View file @
6769cbbd
...
...
@@ -35,4 +35,9 @@ ALTER TABLE llx_commande_fournisseur CHANGE COLUMN date_cloture date_approve dat
ALTER
TABLE
llx_commande_fournisseur
CHANGE
COLUMN
fk_user_cloture
fk_user_approve
integer
;
ALTER
TABLE
llx_mailing
MODIFY
COLUMN
body
mediumtext
;
ALTER
TABLE
llx_mailing
ADD
COLUMN
extraparams
varchar
(
255
);
\ No newline at end of file
ALTER
TABLE
llx_mailing
ADD
COLUMN
extraparams
varchar
(
255
);
ALTER
TABLE
llx_product
MODIFY
ref
varchar
(
128
)
NOT
NULL
;
ALTER
TABLE
llx_product
MODIFY
ref_ext
varchar
(
128
);
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_product.sql
+
2
−
2
View file @
6769cbbd
...
...
@@ -22,10 +22,10 @@
create
table
llx_product
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
ref
varchar
(
32
)
NOT
NULL
,
ref
varchar
(
128
)
NOT
NULL
,
entity
integer
DEFAULT
1
NOT
NULL
,
-- Multi company id
ref_ext
varchar
(
32
),
-- reference into an external system (not used by dolibarr)
ref_ext
varchar
(
128
),
-- reference into an external system (not used by dolibarr)
datec
datetime
,
tms
timestamp
,
...
...
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