stable

Clone or download

Read-only

fix: store tracker_changeset_value_int value as BIGINT

Implements request #38647 store tracker_changeset_value_int value as BIGINT How to test: - before applying the patch, go to a tracker having an integer field allowing maximum 10+ characters. - Create an artifact and set the value of the integer field to `9999999999` - Submit --> The integer field value is `2147483647`, which is the maximum integer value the field can take, because it is stored on 4 bytes. - apply the patch and `make dev-forgeupgrade` - replay the steps 1 to 3 --> The integer field displays `9999999999` Change-Id: I43b06ae3b5a51e996b018804a14421007e4746d7

Modified Files

Name
M plugins/tracker/db/install.sql +1 −1 Go to diff View file
A plugins/tracker/db/mysql/updates/2024/202406271436_alter_integer_value_type_to_bigint.php +35 −0 Go to diff View file