Setting a field as NULL in phpmyadmin

I cannot find where I can set the field as NOT NULL in phpmyadmin. I would like my database to control this feature. I do this programmatically, but I believe that this can add an extra layer of security to my system.

+6
source share
2 answers

When editing a field on the Structure tab, find the NULL check box. If it is not checked, this is equivalent to the NOT NULL statement.

+15
source

not null in php my admin

if you remove this property, it means that there is no null.for clear visualization for beginners.

+4
source

All Articles