Code: Selecteer alles
ALTER TABLE phpbb_users ADD user_birthday INT DEFAULT '999999' not null;
SQL-query:
ALTER TABLE phpbb_users ADD user_birthday INT DEFAULT '999999' NOT NULL
MySQL retourneerde:
#1060 - Duplicate column name 'user_birthday'
Bij toevoeging van :
Code: Selecteer alles
ALTER TABLE phpbb_users ADD user_next_birthday_greeting INT DEFAULT '0' not null;
SQL-query:
ALTER TABLE phpbb_users ADD user_next_birthday_greeting INT DEFAULT '0' NOT NULL
MySQL retourneerde:
#1060 - Duplicate column name 'user_next_birthday_greeting'
Bij toevoeging van :
Code: Selecteer alles
INSERT INTO phpbb_config (config_name, config_value) VALUES ('birthday_required', '0');
SQL-query:
INSERT INTO phpbb_config( config_name, config_value )
VALUES (
'birthday_required', '0'
)
MySQL retourneerde:
#1062 - Duplicate entry 'birthday_required' for key 1
Warning: Invalid argument supplied for foreach() in /wscp/www/wscp/ext/phpMyAdmin/libraries/common.lib.php on line 726
Bij toevoeging van :
Code: Selecteer alles
INSERT INTO phpbb_config (config_name, config_value) VALUES ('birthday_greeting', '1');
SQL-query:
INSERT INTO phpbb_config( config_name, config_value )
VALUES (
'birthday_greeting', '1'
)
MySQL retourneerde:
#1062 - Duplicate entry 'birthday_greeting' for key 1
Warning: Invalid argument supplied for foreach() in /wscp/www/wscp/ext/phpMyAdmin/libraries/common.lib.php on line 726
Bij toevoeging van :
Code: Selecteer alles
INSERT INTO phpbb_config (config_name, config_value) VALUES ('max_user_age', '100');
SQL-query:
INSERT INTO phpbb_config( config_name, config_value )
VALUES (
'max_user_age', '100'
)
MySQL retourneerde:
#1062 - Duplicate entry 'max_user_age' for key 1
Warning: Invalid argument supplied for foreach() in /wscp/www/wscp/ext/phpMyAdmin/libraries/common.lib.php on line 726
Bij toevoeging van :
Code: Selecteer alles
INSERT INTO phpbb_config (config_name, config_value) VALUES ('min_user_age', '5');
SQL-query:
INSERT INTO phpbb_config( config_name, config_value )
VALUES (
'min_user_age', '5'
)
MySQL retourneerde:
#1062 - Duplicate entry 'min_user_age' for key 1
Warning: Invalid argument supplied for foreach() in /wscp/www/wscp/ext/phpMyAdmin/libraries/common.lib.php on line 726
Bij toevoeging van :
Code: Selecteer alles
INSERT INTO phpbb_config (config_name, config_value) VALUES ('birthday_check_day', '7');
SQL-query:
INSERT INTO phpbb_config( config_name, config_value )
VALUES (
'birthday_check_day', '7'
)
MySQL retourneerde:
#1062 - Duplicate entry 'birthday_check_day' for key 1
Warning: Invalid argument supplied for foreach() in /wscp/www/wscp/ext/phpMyAdmin/libraries/common.lib.php on line 726
Misschien en hopelijk kunnen jullie meer mee dan ik :S snap er geen zak van.