Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX - Wrong Typing in DataBase #31517

Open
wants to merge 1 commit into
base: 19.0
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading