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
f2ef4833
Commit
f2ef4833
authored
19 years ago
by
Laurent Destailleur
Browse files
Options
Downloads
Patches
Plain Diff
Index dans fichiers key
parent
e5c4dbbd
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
mysql/tables/llx_c_type_contact.key.sql
+35
-0
35 additions, 0 deletions
mysql/tables/llx_c_type_contact.key.sql
mysql/tables/llx_c_type_contact.sql
+1
-6
1 addition, 6 deletions
mysql/tables/llx_c_type_contact.sql
with
36 additions
and
6 deletions
mysql/tables/llx_c_type_contact.key.sql
0 → 100644
+
35
−
0
View file @
f2ef4833
-- ========================================================================
-- Copyright (C) 2005 Patrick Rouillon <patrick.rouillon.net>
-- Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
--
-- $Id$
-- $Source$
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
--
-- Defini les types de contact d'un element sert de reference pour
-- la table llx_element_contact
--
-- element est le nom de la table utilisant le type de contact.
-- i.e. contact, facture, projet, societe (sans le llx_ devant).
-- Libelle est un texte décrivant le type de contact.
-- active précide si cette valeur est active ou 'archivé'.
--
-- ========================================================================
ALTER
TABLE
llx_c_type_contact
ADD
UNIQUE
INDEX
idx_c_type_contact_uk
(
element
,
code
);
This diff is collapsed.
Click to expand it.
mysql/tables/llx_c_type_contact.sql
+
1
−
6
View file @
f2ef4833
...
...
@@ -35,11 +35,6 @@ create table llx_c_type_contact
rowid
integer
PRIMARY
KEY
,
code
varchar
(
16
)
NOT
NULL
,
element
varchar
(
30
)
NOT
NULL
,
libelle
varchar
(
30
)
NOT
NULL
,
libelle
varchar
(
64
)
NOT
NULL
,
active
tinyint
DEFAULT
1
NOT
NULL
)
type
=
innodb
;
ALTER
TABLE
llx_c_type_contact
ADD
UNIQUE
INDEX
idx_c_type_contact_uk
(
element
,
code
);
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