Skip to content

Commit

Permalink
fix actioncomm module for long trigger names
Browse files Browse the repository at this point in the history
  • Loading branch information
atm-greg committed Apr 23, 2019
1 parent bf7fcce commit 3231e54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions htdocs/install/mysql/migration/7.0.0-8.0.0.sql
Expand Up @@ -560,3 +560,5 @@ UPDATE llx_advtargetemailing SET fk_element = fk_mailing, type_element='mailing'
ALTER TABLE llx_advtargetemailing DROP COLUMN fk_mailing;

DROP TABLE llx_ticket_logs;

ALTER TABLE llx_actioncomm MODIFY COLUMN code varchar(50);
2 changes: 1 addition & 1 deletion htdocs/install/mysql/tables/llx_actioncomm.sql
Expand Up @@ -29,7 +29,7 @@ create table llx_actioncomm
datep2 datetime, -- date end

fk_action integer, -- type of action (optional link with id in llx_c_actioncomm or null)
code varchar(32) NULL, -- code of action for automatic action ('AC_OTH_AUTO' for automatic actions, 'AC_EMAILIN_AUTO' for email input, 'AC_xxx' for manual action...)
code varchar(50) NULL, -- code of action for automatic action ('AC_OTH_AUTO' for automatic actions, 'AC_EMAILIN_AUTO' for email input, 'AC_xxx' for manual action...)

datec datetime, -- date creation
tms timestamp, -- date modification
Expand Down

0 comments on commit 3231e54

Please sign in to comment.