Skip to content

Commit

Permalink
Wrong Typing in DataBase
Browse files Browse the repository at this point in the history
  • Loading branch information
atm-lucasmantegari committed Oct 22, 2024
1 parent 7109054 commit d3f6752
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions htdocs/install/mysql/migration/18.0.0-19.0.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -222,3 +222,5 @@ UPDATE llx_c_units SET scale = 1 WHERE code = 'S';
UPDATE llx_c_tva SET taux = 3 WHERE fk_pays = 102 AND taux = 16;

UPDATE llx_menu SET url = CONCAT(url, '&mode=init') WHERE fk_mainmenu = 'ticket' AND titre = 'NewTicket' AND url LIKE '/ticket/card.php?action=create%' AND url NOT LIKE '%mode=init%';

ALTER TABLE llx_actioncomm MODIFY email_to TEXT, MODIFY email_tocc TEXT, MODIFY email_tobcc TEXT;
6 changes: 3 additions & 3 deletions htdocs/install/mysql/tables/llx_actioncomm.sql
Original file line number Diff line number Diff line change
Expand Up @@ -63,9 +63,9 @@ create table llx_actioncomm
email_msgid varchar(255), -- when event was an email, we store here the msgid
email_from varchar(255), -- when event was an email, we store here the from
email_sender varchar(255), -- when event was an email, we store here the sender
email_to varchar(255), -- when event was an email, we store here the email_to
email_tocc varchar(255), -- when event was an email, we store here the email_tocc
email_tobcc varchar(255), -- when event was an email, we store here the email_tobcc
email_to TEXT, -- when event was an email, we store here the email_to
email_tocc TEXT, -- when event was an email, we store here the email_tocc
email_tobcc TEXT, -- when event was an email, we store here the email_tobcc
errors_to varchar(255), -- when event was an email, we store here the erros_to
reply_to varchar(255), -- when event was an email, we store here the reply_to

Expand Down

0 comments on commit d3f6752

Please sign in to comment.