I'm trying to modify a row, marketing_schedule
, in my database to change the column to NULL
to NO
.
I've tried the command ALTER TABLE permissions MODIFY marketing_schedule tinyint(1) NOT NULL;
as given in How to add not null constraint to existing column in MySQL5.1 but I get the error shown in the screenshot above. Any idea on why I'm getting this error and how I can go about fixing my problem?