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
1df1e775
Commit
1df1e775
authored
9 years ago
by
aspangaro
Browse files
Options
Downloads
Patches
Plain Diff
Space2
parent
e118aad9
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.9.0-4.0.0.sql
+7
-7
7 additions, 7 deletions
htdocs/install/mysql/migration/3.9.0-4.0.0.sql
htdocs/install/mysql/tables/llx_c_accounting_category.sql
+7
-7
7 additions, 7 deletions
htdocs/install/mysql/tables/llx_c_accounting_category.sql
with
14 additions
and
14 deletions
htdocs/install/mysql/migration/3.9.0-4.0.0.sql
+
7
−
7
View file @
1df1e775
...
...
@@ -332,13 +332,13 @@ DELETE FROM llx_menu where module='expensereport';
ALTER
TABLE
llx_accounting_account
ADD
COLUMN
fk_accounting_category
integer
DEFAULT
0
after
label
;
CREATE
TABLE
llx_c_accounting_category
(
rowid
integer
NOT
NULL
AUTO_INCREMENT
PRIMARY
KEY
,
code
varchar
(
16
)
NOT
NULL
,
label
varchar
(
255
)
NOT
NULL
,
range_account
varchar
(
255
)
NOT
NULL
,
position
integer
DEFAULT
0
,
fk_country
integer
DEFAULT
NULL
,
-- This category is dedicated to a country
active
integer
DEFAULT
1
rowid
integer
NOT
NULL
AUTO_INCREMENT
PRIMARY
KEY
,
code
varchar
(
16
)
NOT
NULL
,
label
varchar
(
255
)
NOT
NULL
,
range_account
varchar
(
255
)
NOT
NULL
,
position
integer
DEFAULT
0
,
fk_country
integer
DEFAULT
NULL
,
-- This category is dedicated to a country
active
integer
DEFAULT
1
)
ENGINE
=
innodb
;
ALTER
TABLE
llx_c_accounting_category
ADD
UNIQUE
INDEX
uk_c_accounting_category
(
code
);
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_c_accounting_category.sql
+
7
−
7
View file @
1df1e775
...
...
@@ -18,11 +18,11 @@
-- ===================================================================
CREATE
TABLE
llx_c_accounting_category
(
rowid
integer
NOT
NULL
AUTO_INCREMENT
PRIMARY
KEY
,
code
varchar
(
16
)
NOT
NULL
,
label
varchar
(
255
)
NOT
NULL
,
range_account
varchar
(
255
)
NOT
NULL
,
position
integer
DEFAULT
0
,
fk_country
integer
DEFAULT
NULL
,
-- This category is dedicated to a country
active
integer
DEFAULT
1
rowid
integer
NOT
NULL
AUTO_INCREMENT
PRIMARY
KEY
,
code
varchar
(
16
)
NOT
NULL
,
label
varchar
(
255
)
NOT
NULL
,
range_account
varchar
(
255
)
NOT
NULL
,
position
integer
DEFAULT
0
,
fk_country
integer
DEFAULT
NULL
,
-- This category is dedicated to a country
active
integer
DEFAULT
1
)
ENGINE
=
innodb
;
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