If you have a stubborn phpmyadmin column that wont delete due to a foreign key then use this sql code below.
1 2 3 4 |
ALTER TABLE `workers` DROP FOREIGN KEY `worker_fk0`; ALTER TABLE `workers` DROP COLUMN `skillsid`; |
© 2022 CODEHAVEN