does anyone have a fix for this
Field 'position' doesn't have a default value
would help thanks
does anyone have a fix for this
Field 'position' doesn't have a default value
would help thanks
%table% = table of course.Code:ALTER TABLE %table% MODIFY %column% %type% DEFAULT '%value%';
%column% = the column name.
%type% = this is a few examples, int(11) or varchar(255)
%value% = the value of the default column.