sandman
sandman copied to clipboard
Doesn't show 'false' on admin page
if value of a field is 'false' it is not visible on admin page
I'm not able to reproduce this issue. Could you send me a sample db schema that exhibits this behavior. Boolean fields should be represented by a checkmark column, where a checkmark denotes "True" and its absence denotes "False". Are you seeing the boolean column at all?
Also, please let me know the command you're running if using sandmanctl
I'm seeing this on a MySql table with a field which is bit(1), the column is show in the create, but not on the create/update form. CREATE TABLE test (ID int NOT NULL PRIMARY KEY, name varchar(25), flag bit(1) NOT NULL); does the trick.