[MYSQL] REMOVE CONSTRAINT COLUMN - fourslickz/notes GitHub Wiki
remove cconstraint foreign key
ALTER TABLE your_table DROP FOREIGN KEY `your_table_column_id_foreign`;
remove column
ALTER TABLE your_table DROP COLUMN your_column_id;
remove cconstraint foreign key
ALTER TABLE your_table DROP FOREIGN KEY `your_table_column_id_foreign`;
remove column
ALTER TABLE your_table DROP COLUMN your_column_id;