Hello team.
Facing the issue with DB column of type boolean with default value true not working. I set default value to be true, but when creating records via code(JS SDK) or Rest console it creates records with value as false instead of true.
PS: via Backendless UI it works well, as expected.
Steps to reproduce:
there is a table in DB with a column of type boolean which has the default value true.
create a record in DB(Rest console, code, doesn’t matter) without specifying a value for that target column.
expected result: the record is created, and the target column’s value is set to default value(true).
actual result: the record is created with no default value specified for target column(it is set to false).
Example:
I have a table with column boolean_column(Boolean) DefaultValue: true and when creating a record without specifying a value for boolean_column column, the record is created in which boolean_column has value false (expected true).
It worked in that way in Backendless v6, but now we migrated to Backendless v7 and it started to fail, so we trying to understand if this is a bug on the Backendless side or an expected behavior.
here are few screenshots to describe.
the DB table was created from scratch manually via Backendless UI for this test, but even tables created via the code migrations behaves the same way.
I also tried to turn Enable dynamic schema definition on/off and it doesn’t help
I was able to reproduce the issue. We need some more time to investigate and provide either an explanation or a fix.
As a workaround, you can save the object with null for the boolean type. For example, if you have a column isOk with a default value of true, saving an object with {"isOk": null} will result in isOk being set to true.
Here’s an example request using cURL:
curl -X POST -H 'Content-Type:application/json' 'https://<custom-domain>/api/data/MyTable' -d '{"isOk": null}' -i