Boolean default values not displayed
Default values of boolean fields seem to not be displayed properly:
Hello! I can't reproduce the bug.
I tried on Edge, Chrome, and Firefox and it works on all 3.
Same for me I cannot reproduce this.
Yes tried on all possible browsers, not able to reproduce
I guess it only happens when you import from source, try the following:
CREATE TABLE `Test` (
`DefaultFalse` BOOLEAN DEFAULT (FALSE),
`DefaultTrue` BOOLEAN DEFAULT (TRUE)
);
If I manually edit the default values in the browser afterwards, they do show up properly.
I guess it only happens when you import from source, try the following:
CREATE TABLE `Test` ( `DefaultFalse` BOOLEAN DEFAULT (FALSE), `DefaultTrue` BOOLEAN DEFAULT (TRUE) );If I manually edit the default values in the browser afterwards, they do show up properly.
Did this, I can replicate the issue