https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=27534
--- Comment #9 from Jonathan Druart <[email protected]> --- Manos, it means you already have it in the table. MariaDB [koha_kohadev]> select count(*) from letter where message_transport_type="phone"; +----------+ | count(*) | +----------+ | 1 | +----------+ 1 row in set (0.000 sec) MariaDB [koha_kohadev]> UPDATE message_transport_types SET message_transport_type = "xxx" WHERE message_transport_type = "phone"; Query OK, 1 row affected (0.019 sec) Rows matched: 1 Changed: 1 Warnings: 0 MariaDB [koha_kohadev]> select count(*) from letter where message_transport_type="xxx"; +----------+ | count(*) | +----------+ | 1 | +----------+ 1 row in set (0.002 sec) That seems to work for me. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
