I set up my first data table which had a number of booleans in it. When I queried it with the following code
cards = app_tables.card_info.search(blank_back=False)
No rows were returned. However if I changed the input to True, I got the expected rows.
I then went to the data table and clicked on and off the checkbox for each of the rows that were False. I reran the first query and now got the expected results instead of no rows.
I then saw there was and ‘auto create missing columns when adding rows option’ so I checked that. I then added a new row with blank_back = False and it didn’t show up.
I take it that there are 3 possible values for a boolean, True, False, and Null? If so is there any way to set up a default value when manually entering information to the data tables through the UI?
Thanks