Code: Select all
INSERT INTO phpbb_config (config_name, config_value) VALUES (allow_birthdays, 2);
Code: Select all
The failed line was:
INSERT INTO phpbb_config(config_name,config_value) VALUES(allow_birthdays,2);;
SQL ERROR: 1054
Unknown column 'allow_birthdays' in 'field list'
UPDATE
Answered my own question - allow_birthdays needs to be enclosed by single quotes. I had tried backquotes and double-quotes, but I failed to try just plain single quotes.