mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
fix: fix SQL new install (#29861)
* fix: SQL fresh install script * fix: SQL fresh install script * fix perms files * fix: travis CI --------- Co-authored-by: Laurent Destailleur <eldy@destailleur.fr>
This commit is contained in:
parent
522e861f4a
commit
ebab48ac0e
|
|
@ -32,8 +32,7 @@ function getHtmlOfLayout($name)
|
|||
{
|
||||
global $conf, $mysoc, $user, $langs;
|
||||
|
||||
$substitutionarray = array();
|
||||
$substitutionarray = getCommonSubstitutionArray($langs, 1);
|
||||
$substitutionarray = getCommonSubstitutionArray($langs);
|
||||
|
||||
// TODO Read template from a file "install/doctemplates/maillayout/xxx.html"
|
||||
|
||||
|
|
|
|||
|
|
@ -306,6 +306,7 @@ ALTER TABLE llx_expeditiondet ADD INDEX idx_expeditiondet_fk_elementdet (fk_elem
|
|||
|
||||
ALTER TABLE llx_receptiondet_batch CHANGE COLUMN fk_commande fk_element integer;
|
||||
ALTER TABLE llx_receptiondet_batch CHANGE COLUMN fk_commandefourndet fk_elementdet integer;
|
||||
ALTER TABLE llx_receptiondet_batch ADD INDEX idx_receptiondet_batch_fk_element (fk_element);
|
||||
|
||||
ALTER TABLE llx_supplier_proposaldet MODIFY ref_fourn VARCHAR(128) NULL;
|
||||
|
||||
|
|
|
|||
|
|
@ -20,7 +20,7 @@
|
|||
-- ============================================================================
|
||||
|
||||
|
||||
ALTER TABLE llx_fichinter_rec ADD UNIQUE INDEX idx_fichinter_rec_uk_titre (titre, entity);
|
||||
ALTER TABLE llx_fichinter_rec ADD UNIQUE INDEX idx_fichinter_rec_uk_titre (title, entity);
|
||||
|
||||
ALTER TABLE llx_fichinter_rec ADD INDEX idx_fichinter_rec_fk_soc (fk_soc);
|
||||
ALTER TABLE llx_fichinter_rec ADD INDEX idx_fichinter_rec_fk_user_author (fk_user_author);
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@
|
|||
--
|
||||
-- ===================================================================
|
||||
|
||||
ALTER TABLE llx_receptiondet_batch ADD INDEX idx_receptiondet_batch_fk_commande (fk_commande);
|
||||
ALTER TABLE llx_receptiondet_batch ADD INDEX idx_receptiondet_batch_fk_element (fk_element);
|
||||
ALTER TABLE llx_receptiondet_batch ADD INDEX idx_receptiondet_batch_fk_reception (fk_reception);
|
||||
ALTER TABLE llx_receptiondet_batch ADD CONSTRAINT fk_receptiondet_batch_fk_reception FOREIGN KEY (fk_reception) REFERENCES llx_reception (rowid);
|
||||
ALTER TABLE llx_receptiondet_batch ADD INDEX idx_receptiondet_batch_fk_product (fk_product);
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user