Details
-
Bug
-
Status: Closed (View Workflow)
-
Major
-
Resolution: Fixed
-
22.08.13
-
None
-
MXS-SPRINT-214
Description
Right-click on a trigger node in the schema tree explorer, the auto-generated SQL for dropping the trigger is invalid. For example:
DROP TRIGGER `department`.`prevent_department_deletion`; |
`department` is the table name but it should have been the schema name.
The valid syntax would be as follows:
DROP TRIGGER `company`.`prevent_department_deletion`; |