Fix a bug in install

This commit is contained in:
Laurent Destailleur 2009-01-15 01:03:19 +00:00
parent b137d45be3
commit b02d8add63
3 changed files with 3 additions and 2 deletions

View File

@ -38,6 +38,7 @@ For developers:
- Removed som deprecated files.
- Renamed all function dolibarr_xxx into dol_xxx to have same prefix everywhere.
- Rewrite clone feature for supplier invoice to work like other clone features.
- First change to manage a future feature "stock PMP value".
***** Changelog for 2.5 compared to 2.4 *****

View File

@ -153,7 +153,7 @@ $dolibarr_main_authentication="dolibarr";
# Examples:
# $dolibarr_main_authentication=0;
#
$dolibarr_main_force_https=0
$dolibarr_main_force_https="0"
# Parameters used to setup LDAP authentication.

View File

@ -24,7 +24,7 @@ create table llx_product_stock
tms timestamp,
fk_product integer NOT NULL,
fk_entrepot integer NOT NULL,
reel integer -- physical stock
reel integer, -- physical stock
pmp double(24,8) default 0 NOT NULL -- PMP value for product in this warehous
)type=innodb;