sandman icon indicating copy to clipboard operation
sandman copied to clipboard

Doesn't show 'false' on admin page

Open adityaU opened this issue 10 years ago • 2 comments

if value of a field is 'false' it is not visible on admin page

adityaU avatar Apr 20 '14 21:04 adityaU

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

jeffknupp avatar Apr 21 '14 20:04 jeffknupp

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.

AVee avatar Oct 09 '14 21:10 AVee