- Messages
- 5
- Reactions
- 0
Can anyone tell me what the problem is?
This error occurs when importing a database file into phpmyadmin
ALTER TABLE
`bot_groups`
ADD
CONSTRAINT `bot_groups_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE
SET
NULL,
ADD
CONSTRAINT `bot_groups_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE
SET
NULL,
ADD
CONSTRAINT `bot_groups_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE
SET
NULL
MySQL Answer: Documentation
#1824 - Failed to open the referenced table 'users'
This error occurs when importing a database file into phpmyadmin
ALTER TABLE
`bot_groups`
ADD
CONSTRAINT `bot_groups_client_id_foreign` FOREIGN KEY (`client_id`) REFERENCES `clients` (`id`) ON DELETE
SET
NULL,
ADD
CONSTRAINT `bot_groups_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`) ON DELETE
SET
NULL,
ADD
CONSTRAINT `bot_groups_updated_by_foreign` FOREIGN KEY (`updated_by`) REFERENCES `users` (`id`) ON DELETE
SET
NULL
MySQL Answer: Documentation
#1824 - Failed to open the referenced table 'users'
Reacted by: