2
0
forked from Wavyzz/dolibarr

Trad: Ajout champ lang sur les tables du dictionnaire qui doivent etre multi-langue.

This commit is contained in:
Laurent Destailleur
2004-08-08 19:37:44 +00:00
parent 148cd5e555
commit 297c1d754b
8 changed files with 20 additions and 4 deletions

View File

@@ -1,5 +1,6 @@
-- ========================================================================
-- Copyright (C) 2004 Benoit Mortier <benoit.mortier@opensides.be>
-- Copyright (C) 2004 Laurent Destailleur <eldy@users.sourceforge.net>
--
-- 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
@@ -22,8 +23,10 @@
create table llx_c_civilite
(
rowid integer PRIMARY KEY,
fk_pays integer default 1,
civilite varchar(50),
lang varchar(8) default 'all' not null,
code varchar(6),
fk_pays integer default 0,
civilite varchar(50),
active tinyint default 1
)type=innodb;