You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now if you use boolean values in fixtures.yml, you we not get what you expected:
//task.json
{
"name": "task",
"base": "MyPersistedModel",
"idInjection": true,
"properties": {
"completed": {
"type": "boolean"
}
}
//fixture/data.yml
task:
task_1:
completed: true //will be `true`
task_2:
completed: false //will be `true`
task_3:
completed: 1 //will be `true`
task_4:
completed: 0 //will be `true`
task_5:
completed: "1" //will be `true`
task_6:
completed: "0" //this is the only what to actually get a `false` value in db
The text was updated successfully, but these errors were encountered:
Right now if you use boolean values in fixtures.yml, you we not get what you expected:
The text was updated successfully, but these errors were encountered: