Columns are nullable by default. As long as the column is not declared UNIQUE or NOT NULL . However, things may change during development or to prevent insert error.
Thus, run this comman, example:
ALTER TABLE `table_name` MODIFY `table_field` varchar(255) NULL;
What do you think?