123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565 |
- --
- -- Be carefull to requests order.
- -- This file must be loaded by calling /install/index.php page
- -- when current version is 14.0.0 or higher.
- --
- -- To restrict request to Mysql version x.y minimum use -- VMYSQLx.y
- -- To restrict request to Pgsql version x.y minimum use -- VPGSQLx.y
- -- To rename a table: ALTER TABLE llx_table RENAME TO llx_table_new;
- -- To add a column: ALTER TABLE llx_table ADD COLUMN newcol varchar(60) NOT NULL DEFAULT '0' AFTER existingcol;
- -- To rename a column: ALTER TABLE llx_table CHANGE COLUMN oldname newname varchar(60);
- -- To drop a column: ALTER TABLE llx_table DROP COLUMN oldname;
- -- To change type of field: ALTER TABLE llx_table MODIFY COLUMN name varchar(60);
- -- To drop a foreign key: ALTER TABLE llx_table DROP FOREIGN KEY fk_name;
- -- To create a unique index ALTER TABLE llx_table ADD UNIQUE INDEX uk_table_field (field);
- -- To drop an index: -- VMYSQL4.1 DROP INDEX nomindex on llx_table;
- -- To drop an index: -- VPGSQL8.2 DROP INDEX nomindex;
- -- To make pk to be auto increment (mysql): -- VMYSQL4.3 ALTER TABLE llx_table CHANGE COLUMN rowid rowid INTEGER NOT NULL AUTO_INCREMENT;
- -- To make pk to be auto increment (postgres):
- -- -- VPGSQL8.2 CREATE SEQUENCE llx_table_rowid_seq OWNED BY llx_table.rowid;
- -- -- VPGSQL8.2 ALTER TABLE llx_table ADD PRIMARY KEY (rowid);
- -- -- VPGSQL8.2 ALTER TABLE llx_table ALTER COLUMN rowid SET DEFAULT nextval('llx_table_rowid_seq');
- -- -- VPGSQL8.2 SELECT setval('llx_table_rowid_seq', MAX(rowid)) FROM llx_table;
- -- To set a field as NULL: -- VMYSQL4.3 ALTER TABLE llx_table MODIFY COLUMN name varchar(60) NULL;
- -- To set a field as NULL: -- VPGSQL8.2 ALTER TABLE llx_table ALTER COLUMN name DROP NOT NULL;
- -- To set a field as NOT NULL: -- VMYSQL4.3 ALTER TABLE llx_table MODIFY COLUMN name varchar(60) NOT NULL;
- -- To set a field as NOT NULL: -- VPGSQL8.2 ALTER TABLE llx_table ALTER COLUMN name SET NOT NULL;
- -- To set a field as default NULL: -- VPGSQL8.2 ALTER TABLE llx_table ALTER COLUMN name SET DEFAULT NULL;
- -- Note: fields with type BLOB/TEXT can't have default value.
- -- To rebuild sequence for postgresql after insert by forcing id autoincrement fields:
- -- -- VPGSQL8.2 SELECT dol_util_rebuild_sequences();
- -- Missing in v14 or lower
- -- VMYSQL4.3 ALTER TABLE llx_partnership MODIFY COLUMN date_partnership_end date NULL;
- -- VPGSQL8.2 ALTER TABLE llx_partnership ALTER COLUMN date_partnership_end DROP NOT NULL;
- ALTER TABLE llx_product_fournisseur_price ADD COLUMN packaging real DEFAULT NULL;
- -- VMYSQL4.3 ALTER TABLE llx_product_fournisseur_price MODIFY COLUMN packaging real DEFAULT NULL;
- -- VPGSQL8.2 ALTER TABLE llx_product_fournisseur_price MODIFY COLUMN packaging real DEFAULT NULL USING packaging::real;
- ALTER TABLE llx_accounting_bookkeeping ADD COLUMN date_export datetime DEFAULT NULL;
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD COLUMN fk_project integer NOT NULL;
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD COLUMN fk_invoice integer NULL;
- ALTER TABLE llx_eventorganization_conferenceorboothattendee DROP FOREIGN KEY fx_eventorganization_conferenceorboothattendee_fk_soc;
- ALTER TABLE llx_eventorganization_conferenceorboothattendee DROP FOREIGN KEY fx_eventorganization_conferenceorboothattendee_fk_actioncomm;
- ALTER TABLE llx_eventorganization_conferenceorboothattendee DROP FOREIGN KEY fx_eventorganization_conferenceorboothattendee_fk_project;
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD INDEX idx_eventorganization_conferenceorboothattendee_rowid (rowid);
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD INDEX idx_eventorganization_conferenceorboothattendee_ref (ref);
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD INDEX idx_eventorganization_conferenceorboothattendee_fk_soc (fk_soc);
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD INDEX idx_eventorganization_conferenceorboothattendee_fk_actioncomm (fk_actioncomm);
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD INDEX idx_eventorganization_conferenceorboothattendee_email (email);
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD INDEX idx_eventorganization_conferenceorboothattendee_status (status);
- -- VMYSQL4.1 DROP INDEX uk_eventorganization_conferenceorboothattendee on llx_eventorganization_conferenceorboothattendee;
- -- VPGSQL8.2 DROP INDEX uk_eventorganization_conferenceorboothattendee;
- ALTER TABLE llx_eventorganization_conferenceorboothattendee ADD UNIQUE INDEX uk_eventorganization_conferenceorboothattendee(fk_project, email, fk_actioncomm);
- -- VMYSQL4.3 ALTER TABLE llx_eventorganization_conferenceorboothattendee MODIFY COLUMN fk_actioncomm integer NULL;
- -- VPGSQL8.2 ALTER TABLE llx_eventorganization_conferenceorboothattendee ALTER COLUMN fk_actioncomm DROP NOT NULL;
- ALTER TABLE llx_mrp_mo ADD COLUMN last_main_doc varchar(255);
- UPDATE llx_extrafields SET elementtype = 'salary' WHERE elementtype = 'payment_salary';
- ALTER TABLE llx_payment_salary_extrafields RENAME TO llx_salary_extrafields;
- -- VMYSQL4.1 DROP INDEX idx_payment_salary_extrafields on llx_salary_extrafields;
- -- VPGSQL8.2 DROP INDEX idx_payment_salary_extrafields;
- ALTER TABLE llx_salary_extrafields ADD INDEX idx_salary_extrafields (fk_object);
- INSERT INTO llx_c_email_templates (entity, module, type_template, lang, private, fk_user, datec, label, position, active, topic, content, content_lines, enabled, joinfiles) values (0, '', 'conferenceorbooth', '', 0, null, null, '(EventOrganizationEmailAskConf)', 10, 1, '[__[MAIN_INFO_SOCIETE_NOM]__] __(EventOrganizationEmailAskConf)__', '__(Hello)__,<br /><br />__(OrganizationEventConfRequestWasReceived)__<br /><br /><br />__(Sincerely)__<br />__USER_SIGNATURE__', null, '1', null);
- INSERT INTO llx_c_email_templates (entity, module, type_template, lang, private, fk_user, datec, label, position, active, topic, content, content_lines, enabled, joinfiles) values (0, '', 'conferenceorbooth', '', 0, null, null, '(EventOrganizationEmailAskBooth)', 20, 1, '[__[MAIN_INFO_SOCIETE_NOM]__] __(EventOrganizationEmailAskBooth)__', '__(Hello)__,<br /><br />__(OrganizationEventBoothRequestWasReceived)__<br /><br /><br />__(Sincerely)__<br />__USER_SIGNATURE__', null, '1', null);
- -- TODO Add message for registration only to event __ONLINE_PAYMENT_TEXT_AND_URL__
- INSERT INTO llx_c_email_templates (entity, module, type_template, lang, private, fk_user, datec, label, position, active, topic, content, content_lines, enabled, joinfiles) values (0, '', 'conferenceorbooth', '', 0, null, null, '(EventOrganizationEmailBoothPayment)', 30, 1, '[__[MAIN_INFO_SOCIETE_NOM]__] __(EventOrganizationEmailBoothPayment)__', '__(Hello)__,<br /><br />__(OrganizationEventPaymentOfBoothWasReceived)__<br /><br /><br />__(Sincerely)__<br />__USER_SIGNATURE__', null, '1', null);
- INSERT INTO llx_c_email_templates (entity, module, type_template, lang, private, fk_user, datec, label, position, active, topic, content, content_lines, enabled, joinfiles) values (0, '', 'conferenceorbooth', '', 0, null, null, '(EventOrganizationEmailRegistrationPayment)', 40, 1, '[__[MAIN_INFO_SOCIETE_NOM]__] __(EventOrganizationEmailRegistrationPayment)__', '__(Hello)__,<br /><br />__(OrganizationEventPaymentOfRegistrationWasReceived)__<br /><br />__(Sincerely)__<br />__USER_SIGNATURE__', null, '1', null);
- INSERT INTO llx_c_email_templates (entity, module, type_template, lang, private, fk_user, datec, label, position, active, topic, content, content_lines, enabled, joinfiles) values (0, '', 'conferenceorbooth', '', 0, null, null, '(EventOrganizationMassEmailAttendees)', 50, 1, '[__[MAIN_INFO_SOCIETE_NOM]__] __(EventOrganizationMassEmailAttendees)__', '__(Hello)__,<br /><br />__(OrganizationEventBulkMailToAttendees)__<br /><br />__(Sincerely)__<br />__USER_SIGNATURE__', null, '1', null);
- INSERT INTO llx_c_email_templates (entity, module, type_template, lang, private, fk_user, datec, label, position, active, topic, content, content_lines, enabled, joinfiles) values (0, '', 'conferenceorbooth', '', 0, null, null, '(EventOrganizationMassEmailSpeakers)', 60, 1, '[__[MAIN_INFO_SOCIETE_NOM]__] __(EventOrganizationMassEmailSpeakers)__', '__(Hello)__,<br /><br />__(OrganizationEventBulkMailToSpeakers)__<br /><br />__(Sincerely)__<br />__USER_SIGNATURE__', null, '1', null);
- UPDATE llx_c_email_templates SET label = '(EventOrganizationEmailBoothPayment)' WHERE label = '(EventOrganizationEmailSubsBooth)';
- UPDATE llx_c_email_templates SET label = '(EventOrganizationEmailRegistrationPayment)' WHERE label = '(EventOrganizationEmailSubsEvent)';
- --Fix bad sign on multicompany column for customer invoice lines
- UPDATE llx_facturedet SET multicurrency_subprice = -multicurrency_subprice WHERE ((multicurrency_subprice < 0 and subprice > 0) OR (multicurrency_subprice > 0 and subprice < 0));
- UPDATE llx_facturedet SET multicurrency_total_ht = -multicurrency_total_ht WHERE ((multicurrency_total_ht < 0 and total_ht > 0) OR (multicurrency_total_ht > 0 and total_ht < 0));
- UPDATE llx_facturedet SET multicurrency_total_tva = -multicurrency_total_tva WHERE ((multicurrency_total_tva < 0 and total_tva > 0) OR (multicurrency_total_tva > 0 and total_tva < 0));
- UPDATE llx_facturedet SET multicurrency_total_ttc = -multicurrency_total_ttc WHERE ((multicurrency_total_ttc < 0 and total_ttc > 0) OR (multicurrency_total_ttc > 0 and total_ttc < 0));
- --Fix bad sign on multicompany column for customer invoices
- UPDATE llx_facture SET multicurrency_total_ht = -multicurrency_total_ht WHERE ((multicurrency_total_ht < 0 and total_ht > 0) OR (multicurrency_total_ht > 0 and total_ht < 0));
- UPDATE llx_facture SET multicurrency_total_tva = -multicurrency_total_tva WHERE ((multicurrency_total_tva < 0 and total_tva > 0) OR (multicurrency_total_tva > 0 and total_tva < 0));
- UPDATE llx_facture SET multicurrency_total_ttc = -multicurrency_total_ttc WHERE ((multicurrency_total_ttc < 0 and total_ttc > 0) OR (multicurrency_total_ttc > 0 and total_ttc < 0));
- --Fix bad sign on multicurrency column for supplier invoice lines
- UPDATE llx_facture_fourn_det SET multicurrency_subprice = -multicurrency_subprice WHERE ((multicurrency_subprice < 0 and pu_ht > 0) OR (multicurrency_subprice > 0 and pu_ht < 0));
- UPDATE llx_facture_fourn_det SET multicurrency_total_ht = -multicurrency_total_ht WHERE ((multicurrency_total_ht < 0 and total_ht > 0) OR (multicurrency_total_ht > 0 and total_ht < 0));
- UPDATE llx_facture_fourn_det SET multicurrency_total_tva = -multicurrency_total_tva WHERE ((multicurrency_total_tva < 0 and tva > 0) OR (multicurrency_total_tva > 0 and tva < 0));
- UPDATE llx_facture_fourn_det SET multicurrency_total_ttc = -multicurrency_total_ttc WHERE ((multicurrency_total_ttc < 0 and total_ttc > 0) OR (multicurrency_total_ttc > 0 and total_ttc < 0));
- --Fix bad sign on multicompany column for customer invoices
- UPDATE llx_facture_fourn SET multicurrency_total_ht = -multicurrency_total_ht WHERE ((multicurrency_total_ht < 0 and total_ht > 0) OR (multicurrency_total_ht > 0 and total_ht < 0));
- UPDATE llx_facture_fourn SET multicurrency_total_tva = -multicurrency_total_tva WHERE ((multicurrency_total_tva < 0 and total_tva > 0) OR (multicurrency_total_tva > 0 and total_tva < 0));
- UPDATE llx_facture_fourn SET multicurrency_total_ttc = -multicurrency_total_ttc WHERE ((multicurrency_total_ttc < 0 and total_ttc > 0) OR (multicurrency_total_ttc > 0 and total_ttc < 0));
- ALTER TABLE llx_propaldet ADD COLUMN import_key varchar(14);
- -- v15
- ALTER TABLE llx_c_partnership_type ADD UNIQUE INDEX uk_c_partnership_type(entity, code);
- ALTER TABLE llx_partnership ADD COLUMN fk_type integer DEFAULT 0 NOT NULL;
- ALTER TABLE llx_c_holiday_types CHANGE COLUMN newByMonth newbymonth double(8,5) DEFAULT 0 NOT NULL;
- ALTER TABLE llx_product ADD COLUMN mandatory_period tinyint NULL DEFAULT 0;
- ALTER TABLE llx_holiday ADD COLUMN date_approve DATETIME DEFAULT NULL;
- ALTER TABLE llx_holiday ADD COLUMN fk_user_approve integer DEFAULT NULL;
- -- VMYSQL4.3 ALTER TABLE llx_ticket MODIFY COLUMN progress integer;
- -- VPGSQL8.2 ALTER TABLE llx_ticket MODIFY COLUMN progress integer USING progress::integer;
- ALTER TABLE llx_emailcollector_emailcollectoraction MODIFY COLUMN actionparam TEXT;
- ALTER TABLE llx_knowledgemanagement_knowledgerecord ADD COLUMN lang varchar(6);
- ALTER TABLE llx_knowledgemanagement_knowledgerecord ADD COLUMN entity integer DEFAULT 1;
- CREATE TABLE llx_categorie_ticket
- (
- fk_categorie integer NOT NULL,
- fk_ticket integer NOT NULL,
- import_key varchar(14)
- ) ENGINE=innodb;
- ALTER TABLE llx_categorie_ticket ADD PRIMARY KEY pk_categorie_ticket (fk_categorie, fk_ticket);
- ALTER TABLE llx_categorie_ticket ADD INDEX idx_categorie_ticket_fk_categorie (fk_categorie);
- ALTER TABLE llx_categorie_ticket ADD INDEX idx_categorie_ticket_fk_ticket (fk_ticket);
- ALTER TABLE llx_categorie_ticket ADD CONSTRAINT fk_categorie_ticket_categorie_rowid FOREIGN KEY (fk_categorie) REFERENCES llx_categorie (rowid);
- ALTER TABLE llx_categorie_ticket ADD CONSTRAINT fk_categorie_ticket_ticket_rowid FOREIGN KEY (fk_ticket) REFERENCES llx_ticket (rowid);
- ALTER TABLE llx_product_fournisseur_price MODIFY COLUMN ref_fourn varchar(128);
- ALTER TABLE llx_product_customer_price MODIFY COLUMN ref_customer varchar(128);
- ALTER TABLE llx_product_association ADD COLUMN rang integer DEFAULT 0;
- -- -- add action trigger
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) VALUES ('ORDER_SUPPLIER_CANCEL','Supplier order request canceled','Executed when a supplier order is canceled','order_supplier',13);
- ALTER TABLE llx_product ADD COLUMN fk_default_bom integer DEFAULT NULL;
- ALTER TABLE llx_mrp_mo ADD COLUMN mrptype integer DEFAULT 0;
- DELETE FROM llx_menu WHERE type = 'top' AND module = 'cashdesk' AND mainmenu = 'cashdesk';
- INSERT INTO llx_c_action_trigger (code, label, description, elementtype, rang) values ('MEMBER_EXCLUDE', 'Member excluded', 'Executed when a member is excluded', 'member', 27);
- CREATE TABLE llx_categorie_knowledgemanagement
- (
- fk_categorie integer NOT NULL,
- fk_knowledgemanagement integer NOT NULL,
- import_key varchar(14)
- )ENGINE=innodb;
- ALTER TABLE llx_categorie_knowledgemanagement ADD PRIMARY KEY pk_categorie_knowledgemanagement (fk_categorie, fk_knowledgemanagement);
- ALTER TABLE llx_categorie_knowledgemanagement ADD INDEX idx_categorie_knowledgemanagement_fk_categorie (fk_categorie);
- ALTER TABLE llx_categorie_knowledgemanagement ADD INDEX idx_categorie_knowledgemanagement_fk_knowledgemanagement (fk_knowledgemanagement);
- ALTER TABLE llx_categorie_knowledgemanagement ADD CONSTRAINT fk_categorie_knowledgemanagement_categorie_rowid FOREIGN KEY (fk_categorie) REFERENCES llx_categorie (rowid);
- ALTER TABLE llx_categorie_knowledgemanagement ADD CONSTRAINT fk_categorie_knowledgemanagement_knowledgemanagement_rowid FOREIGN KEY (fk_knowledgemanagement) REFERENCES llx_knowledgemanagement_knowledgerecord (rowid);
- ALTER TABLE llx_product_lot ADD COLUMN barcode varchar(180) DEFAULT NULL;
- ALTER TABLE llx_product_lot ADD COLUMN fk_barcode_type integer DEFAULT NULL;
- ALTER TABLE llx_projet ADD COLUMN max_attendees integer DEFAULT 0;
- ALTER TABLE llx_commande_fournisseur_dispatch ADD COLUMN cost_price double(24,8) DEFAULT 0;
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2001', 'Aktiebolag');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2002', 'Publikt aktiebolag (AB publ)');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2003', 'Ekonomisk förening (ek. för.)');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2004', 'Bostadsrättsförening (BRF)');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2005', 'Hyresrättsförening (HRF)');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2006', 'Kooperativ');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2007', 'Enskild firma (EF)');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2008', 'Handelsbolag (HB)');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2009', 'Kommanditbolag (KB)');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2010', 'Enkelt bolag');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2011', 'Ideell förening');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle) VALUES (20, '2012', 'Stiftelse');
- ALTER TABLE llx_c_holiday_types ADD COLUMN block_if_negative integer NOT NULL DEFAULT 0 AFTER fk_country;
- -- START GRH/HRM MODULE
- CREATE TABLE llx_hrm_evaluation
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
- ref varchar(128) DEFAULT '(PROV)' NOT NULL,
- label varchar(255),
- description text,
- note_public text,
- note_private text,
- date_creation datetime NOT NULL,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_user_creat integer NOT NULL,
- fk_user_modif integer,
- import_key varchar(14),
- status smallint NOT NULL,
- date_eval date,
- fk_user integer NOT NULL,
- fk_job integer NOT NULL
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_evaluation ADD INDEX idx_hrm_evaluation_rowid (rowid);
- ALTER TABLE llx_hrm_evaluation ADD INDEX idx_hrm_evaluation_ref (ref);
- ALTER TABLE llx_hrm_evaluation ADD CONSTRAINT llx_hrm_evaluation_fk_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user(rowid);
- ALTER TABLE llx_hrm_evaluation ADD INDEX idx_hrm_evaluation_status (status);
- create table llx_hrm_evaluation_extrafields
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_object integer NOT NULL,
- import_key varchar(14) -- import key
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_evaluation_extrafields ADD INDEX idx_evaluation_fk_object(fk_object);
- CREATE TABLE llx_hrm_evaluationdet
- (
- -- BEGIN MODULEBUILDER FIELDS
- rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
- date_creation datetime NOT NULL,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_user_creat integer NOT NULL,
- fk_user_modif integer,
- fk_skill integer NOT NULL,
- fk_evaluation integer NOT NULL,
- rankorder integer NOT NULL,
- required_rank integer NOT NULL,
- import_key varchar(14)
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_evaluationdet ADD INDEX idx_hrm_evaluationdet_rowid (rowid);
- ALTER TABLE llx_hrm_evaluationdet ADD CONSTRAINT llx_hrm_evaluationdet_fk_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user(rowid);
- ALTER TABLE llx_hrm_evaluationdet ADD INDEX idx_hrm_evaluationdet_fk_skill (fk_skill);
- ALTER TABLE llx_hrm_evaluationdet ADD INDEX idx_hrm_evaluationdet_fk_evaluation (fk_evaluation);
- create table llx_hrm_evaluationdet_extrafields
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_object integer NOT NULL,
- import_key varchar(14) -- import key
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_evaluationdet_extrafields ADD INDEX idx_evaluationdet_fk_object(fk_object);
- CREATE TABLE llx_hrm_job
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
- label varchar(255) NOT NULL,
- description text,
- date_creation datetime NOT NULL,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- deplacement varchar(255),
- note_public text,
- note_private text,
- fk_user_creat integer,
- fk_user_modif integer
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_job ADD INDEX idx_hrm_job_rowid (rowid);
- ALTER TABLE llx_hrm_job ADD INDEX idx_hrm_job_label (label);
- create table llx_hrm_job_extrafields
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_object integer NOT NULL,
- import_key varchar(14) -- import key
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_job_extrafields ADD INDEX idx_job_fk_object(fk_object);
- CREATE TABLE llx_hrm_job_user(
- rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
- -- ref varchar(128) NOT NULL,
- description text,
- date_creation datetime NOT NULL,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_contrat integer,
- fk_user integer,
- fk_job integer NOT NULL,
- date_start date,
- date_end date,
- abort_comment varchar(255),
- note_public text,
- note_private text,
- fk_user_creat integer,
- fk_user_modif integer
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_job_user ADD COLUMN abort_comment varchar(255);
- ALTER TABLE llx_hrm_job_user ADD INDEX idx_hrm_job_user_rowid (rowid);
- -- ALTER TABLE llx_hrm_job_user ADD INDEX idx_hrm_job_user_ref (ref);
- CREATE TABLE llx_hrm_skill
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
- label varchar(255),
- description text,
- date_creation datetime NOT NULL,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_user_creat integer NOT NULL,
- fk_user_modif integer,
- required_level integer NOT NULL,
- date_validite integer NOT NULL,
- temps_theorique double(24,8) NOT NULL,
- skill_type integer NOT NULL,
- note_public text,
- note_private text
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_skill ADD INDEX idx_hrm_skill_rowid (rowid);
- ALTER TABLE llx_hrm_skill ADD CONSTRAINT llx_hrm_skill_fk_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user(rowid);
- ALTER TABLE llx_hrm_skill ADD INDEX idx_hrm_skill_skill_type (skill_type);
- create table llx_hrm_skill_extrafields
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_object integer NOT NULL,
- import_key varchar(14) -- import key
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_skill_extrafields ADD INDEX idx_skill_fk_object(fk_object);
- CREATE TABLE llx_hrm_skilldet
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
- description text,
- fk_user_creat integer NOT NULL,
- fk_user_modif integer,
- fk_skill integer NOT NULL,
- rankorder integer
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_skilldet ADD COLUMN rankorder integer NOT NULL DEFAULT '1';
- ALTER TABLE llx_hrm_skilldet ADD INDEX idx_hrm_skilldet_rowid (rowid);
- ALTER TABLE llx_hrm_skilldet ADD CONSTRAINT llx_hrm_skilldet_fk_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user(rowid);
- CREATE TABLE llx_hrm_skillrank
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
- fk_skill integer NOT NULL,
- rankorder integer NOT NULL,
- fk_object integer NOT NULL,
- date_creation datetime NOT NULL,
- tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
- fk_user_creat integer NOT NULL,
- fk_user_modif integer,
- objecttype varchar(128) NOT NULL
- ) ENGINE=innodb;
- ALTER TABLE llx_hrm_skillrank ADD INDEX idx_hrm_skillrank_rowid (rowid);
- ALTER TABLE llx_hrm_skillrank ADD INDEX idx_hrm_skillrank_fk_skill (fk_skill);
- ALTER TABLE llx_hrm_skillrank ADD CONSTRAINT llx_hrm_skillrank_fk_user_creat FOREIGN KEY (fk_user_creat) REFERENCES llx_user(rowid);
- --END GRH/HRM MODULE
- ALTER TABLE llx_c_units ADD COLUMN sortorder smallint AFTER code;
- -- Manage accountancy auxiliary account for thirdparties per entity
- ALTER TABLE llx_societe_perentity ADD COLUMN accountancy_code_customer varchar(24) AFTER entity; -- equivalent to code_compta in llx_societe
- ALTER TABLE llx_societe_perentity ADD COLUMN accountancy_code_supplier varchar(24) AFTER accountancy_code_customer; -- equivalent to code_compta_supplier in llx_societe
- ALTER TABLE llx_projet_task ADD COLUMN budget_amount double(24,8) AFTER priority;
- -- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_graph_ticket_by_severity.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_graph_ticket_by_severity.php' AND entity = 1);
- -- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_graph_nb_ticket_last_x_days.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_graph_nb_ticket_last_x_days.php' AND entity = 1);
- -- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_graph_nb_tickets_type.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_graph_nb_tickets_type.php' AND entity = 1);
- -- VMYSQL4.1 INSERT INTO llx_boxes_def (file, entity) SELECT 'box_graph_new_vs_close_ticket.php', 1 FROM DUAL WHERE NOT EXISTS (SELECT * FROM llx_boxes_def WHERE file = 'box_graph_new_vs_close_ticket.php' AND entity = 1);
- ALTER TABLE llx_user DROP COLUMN jabberid;
- ALTER TABLE llx_user DROP COLUMN skype;
- ALTER TABLE llx_user DROP COLUMN twitter;
- ALTER TABLE llx_user DROP COLUMN facebook;
- ALTER TABLE llx_user DROP COLUMN linkedin;
- ALTER TABLE llx_user DROP COLUMN instagram;
- ALTER TABLE llx_user DROP COLUMN snapchat;
- ALTER TABLE llx_user DROP COLUMN googleplus;
- ALTER TABLE llx_user DROP COLUMN youtube;
- ALTER TABLE llx_user DROP COLUMN whatsapp;
- ALTER TABLE llx_adherent DROP COLUMN jabberid;
- ALTER TABLE llx_adherent DROP COLUMN skype;
- ALTER TABLE llx_adherent DROP COLUMN twitter;
- ALTER TABLE llx_adherent DROP COLUMN facebook;
- ALTER TABLE llx_adherent DROP COLUMN linkedin;
- ALTER TABLE llx_adherent DROP COLUMN instagram;
- ALTER TABLE llx_adherent DROP COLUMN snapchat;
- ALTER TABLE llx_adherent DROP COLUMN googleplus;
- ALTER TABLE llx_adherent DROP COLUMN youtube;
- ALTER TABLE llx_adherent DROP COLUMN whatsapp;
- ALTER TABLE llx_societe DROP COLUMN jabberid;
- ALTER TABLE llx_societe DROP COLUMN skype;
- ALTER TABLE llx_societe DROP COLUMN twitter;
- ALTER TABLE llx_societe DROP COLUMN facebook;
- ALTER TABLE llx_societe DROP COLUMN linkedin;
- ALTER TABLE llx_societe DROP COLUMN instagram;
- ALTER TABLE llx_societe DROP COLUMN snapchat;
- ALTER TABLE llx_societe DROP COLUMN googleplus;
- ALTER TABLE llx_societe DROP COLUMN youtube;
- ALTER TABLE llx_societe DROP COLUMN whatsapp;
- ALTER TABLE llx_socpeople DROP COLUMN jabberid;
- ALTER TABLE llx_socpeople DROP COLUMN skype;
- ALTER TABLE llx_socpeople DROP COLUMN twitter;
- ALTER TABLE llx_socpeople DROP COLUMN facebook;
- ALTER TABLE llx_socpeople DROP COLUMN linkedin;
- ALTER TABLE llx_socpeople DROP COLUMN instagram;
- ALTER TABLE llx_socpeople DROP COLUMN snapchat;
- ALTER TABLE llx_socpeople DROP COLUMN googleplus;
- ALTER TABLE llx_socpeople DROP COLUMN youtube;
- ALTER TABLE llx_socpeople DROP COLUMN whatsapp;
- INSERT INTO llx_c_paiement (id,code,libelle,type,active) values (100, 'KLA', 'Klarna', 1, 0);
- INSERT INTO llx_c_paiement (id,code,libelle,type,active) values (101, 'SOF', 'Sofort', 1, 0);
- INSERT INTO llx_c_paiement (id,code,libelle,type,active) values (102, 'BAN', 'Bancontact', 1, 0);
- INSERT INTO llx_c_paiement (id,code,libelle,type,active) values (103, 'IDE', 'iDeal', 1, 0);
- INSERT INTO llx_c_paiement (id,code,libelle,type,active) values (104, 'GIR', 'Giropay', 1, 0);
- ALTER TABLE llx_paiement_facture ADD COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_paiement_facture ADD COLUMN multicurrency_tx double(24,8) DEFAULT 1;
- ALTER TABLE llx_paiement_facture ADD COLUMN multicurrency_amount double(24,8) DEFAULT 0;
- ALTER TABLE llx_paiementfourn_facturefourn ADD COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_paiementfourn_facturefourn ADD COLUMN multicurrency_tx double(24,8) DEFAULT 1;
- ALTER TABLE llx_paiementfourn_facturefourn ADD COLUMN multicurrency_amount double(24,8) DEFAULT 0;
- ALTER TABLE llx_commande_fournisseur MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_commande_fournisseurdet MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_commande MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_commandedet MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_contratdet MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_expensereport_det MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_expensereport MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_facture_fourn_det MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_facture_fourn MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_facture_rec MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_facture MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_facturedet_rec MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_facturedet MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_paiement_facture MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_paiementfourn_facturefourn MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_product_fournisseur_price_log MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_product_fournisseur_price MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_product_price_by_qty MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_product_price MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_propal MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_propaldet MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_societe MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_supplier_proposal MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_supplier_proposaldet MODIFY COLUMN multicurrency_code varchar(3);
- ALTER TABLE llx_propal ADD COLUMN online_sign_ip varchar(48);
- ALTER TABLE llx_propal ADD COLUMN online_sign_name varchar(64);
- ALTER TABLE llx_entrepot ADD COLUMN warehouse_usage integer DEFAULT 1;
- ALTER TABLE llx_session MODIFY COLUMN user_agent VARCHAR(255) NULL;
- ALTER TABLE llx_inventorydet ADD COLUMN fk_movement integer NULL;
- ALTER TABLE llx_stock_mouvement MODIFY COLUMN origintype varchar(64);
- ALTER TABLE llx_intracommreport CHANGE COLUMN period periods varchar(32);
- UPDATE llx_rights_def SET perms = 'writeall' WHERE perms = 'writeall_advance' AND module = 'holiday';
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('USER_CREATE','User created','Executed when a user is created','user',301);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('USER_MODIFY','User update','Executed when a user is updated','user',302);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('USER_DELETE','User update','Executed when a user is deleted','user',303);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('USER_NEW_PASSWORD','User update','Executed when a user is change password','user',304);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('USER_ENABLEDISABLE','User update','Executed when a user is enable or disable','user',305);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('HOLIDAY_CREATE','Holiday created','Executed when a holiday is created','holiday',800);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('HOLIDAY_MODIFY','Holiday modified','Executed when a holiday is modified','holiday',801);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('HOLIDAY_VALIDATE','Holiday validated','Executed when a holiday is validated','holiday',802);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('HOLIDAY_APPROVE','Holiday aprouved','Executed when a holiday is aprouved','holiday',803);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('HOLIDAY_CANCEL','Holiday canceled','Executed when a holiday is canceled','holiday',802);
- INSERT INTO llx_c_action_trigger (code,label,description,elementtype,rang) values ('HOLIDAY_DELETE','Holiday deleted','Executed when a holiday is deleted','holiday',804);
- -- We do not delete old mexican legal forms because they may have been used. User will have to insert the new one manually not inserted because of conflict if he need them.
- --DELETE FROM llx_c_forme_juridique WHERE code IN ('15401', '15402', '15403', '15404', '15405', '15406');
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15401', '601 - General de Ley Personas Morales', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15402', '603 - Personas Morales con Fines no Lucrativos', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15403', '605 - Sueldos y Salarios e Ingresos Asimilados a Salarios', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15404', '606 - Arrendamiento', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15405', '607 - Régimen de Enajenación o Adquisición de Bienes', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15406', '608 - Demás ingresos', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15407', '610 - Residentes en el Extranjero sin Establecimiento Permanente en México', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15408', '611 - Ingresos por Dividendos (socios y accionistas)', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15409', '612 - Personas Físicas con Actividades Empresariales y Profesionales', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15410', '614 - Ingresos por intereses', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15411', '615 - Régimen de los ingresos por obtención de premios', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15412', '616 - Sin obligaciones fiscales', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15413', '620 - Sociedades Cooperativas de Producción que optan por diferir sus ingresos', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15414', '621 - Incorporación Fiscal', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15415', '622 - Actividades Agrícolas, Ganaderas, Silvícolas y Pesqueras', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15416', '623 - Opcional para Grupos de Sociedades', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15417', '624 - Coordinados', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15418', '625 - Régimen de las Actividades Empresariales con ingresos a través de Plataformas Tecnológicas', 1);
- INSERT INTO llx_c_forme_juridique (fk_pays, code, libelle, active) VALUES (154, '15419', '626 - Régimen Simplificado de Confianza', 1);
- -- VMYSQL4.3 ALTER TABLE llx_user MODIFY COLUMN fk_soc integer NULL;
- -- VPGSQL8.2 ALTER TABLE llx_user ALTER COLUMN fk_soc DROP NOT NULL;
- CREATE TABLE llx_element_tag
- (
- rowid integer AUTO_INCREMENT PRIMARY KEY,
- fk_categorie integer NOT NULL,
- fk_element integer NOT NULL,
- import_key varchar(14)
- )ENGINE=innodb;
- ALTER TABLE llx_element_tag ADD COLUMN fk_categorie integer;
- ALTER TABLE llx_element_tag ADD COLUMN fk_element integer;
- ALTER TABLE llx_element_tag ADD UNIQUE INDEX idx_element_tag_uk (fk_categorie, fk_element);
- ALTER TABLE llx_element_tag ADD CONSTRAINT fk_element_tag_categorie_rowid FOREIGN KEY (fk_categorie) REFERENCES llx_categorie (rowid);
- -- Add column to help to fix a very critical bug when transferring into accounting bank record of a bank account into another currency.
- -- Idea is to update this column manually in v15 with value in currency of company for bank that are not into the main currency and the transfer
- -- into accounting will use it in priority if value is not null. The script repair.sql contains the sequence to fix datas in llx_bank.
- ALTER TABLE llx_bank ADD COLUMN amount_main_currency double(24,8) NULL;
- ALTER TABLE llx_commande_fournisseurdet MODIFY COLUMN ref varchar(128);
- ALTER TABLE llx_facture_fourn_det MODIFY COLUMN ref varchar(128);
- UPDATE llx_c_tva SET localtax2 = '-19:-15:-9' WHERE localtax2 = '-19' AND localtax2_type = '5' AND fk_pays = 4 AND taux = 21;
|