The 'default' => 0, needs to be an integer in the dca - boolean is not working!
And as @fritzmg said we should add 'sql' => ['type' => 'boolean', 'default' => false] to the dca.
The save_callback could be removed but I was not really sure - it's working without, too!
Fix Issue: #36
Finally I found a solution for #36 ☺️
The
'default' => 0,
needs to be aninteger
in the dca - boolean is not working! And as @fritzmg said we should add'sql' => ['type' => 'boolean', 'default' => false]
to the dca. Thesave_callback
could be removed but I was not really sure - it's working without, too!