I want to remove constraints from my table. My query is:
ALTER TABLE `tbl_magazine_issue` DROP CONSTRAINT `FK_tbl_magazine_issue_mst_users`
this will works on MySQL to drop constraints
alter table tablename drop primary key; alter table tablename drop foreign key;