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
84d5b755
Commit
84d5b755
authored
12 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
New: Add field tms into llx_bank
parent
a7d9f132
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
+2
-0
2 additions, 0 deletions
htdocs/install/mysql/migration/3.2.0-3.3.0.sql
htdocs/install/mysql/tables/llx_bank.sql
+1
-0
1 addition, 0 deletions
htdocs/install/mysql/tables/llx_bank.sql
with
3 additions
and
0 deletions
htdocs/install/mysql/migration/3.2.0-3.3.0.sql
+
2
−
0
View file @
84d5b755
...
...
@@ -20,6 +20,8 @@ ALTER TABLE llx_societe DROP COLUMN fk_secteur;
ALTER
TABLE
llx_societe
DROP
COLUMN
description
;
ALTER
TABLE
llx_societe
DROP
COLUMN
services
;
ALTER
TABLE
llx_bank
ADD
COLUMN
tms
timestamp
after
datec
;
-- Monaco VAT Rates
insert
into
llx_c_tva
(
rowid
,
fk_pays
,
taux
,
recuperableonly
,
note
,
active
)
values
(
271
,
27
,
'19.6'
,
'0'
,
'VAT standard rate (France hors DOM-TOM)'
,
1
);
insert
into
llx_c_tva
(
rowid
,
fk_pays
,
taux
,
recuperableonly
,
note
,
active
)
values
(
272
,
27
,
'8.5'
,
'0'
,
'VAT standard rate (DOM sauf Guyane et Saint-Martin)'
,
0
);
...
...
This diff is collapsed.
Click to expand it.
htdocs/install/mysql/tables/llx_bank.sql
+
1
−
0
View file @
84d5b755
...
...
@@ -21,6 +21,7 @@ create table llx_bank
(
rowid
integer
AUTO_INCREMENT
PRIMARY
KEY
,
datec
datetime
,
tms
timestamp
,
datev
date
,
-- date de valeur
dateo
date
,
-- date operation
amount
double
(
24
,
8
)
NOT
NULL
default
0
,
...
...
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