I did an schema compare between a database and a project. After I sycronized the database with the project with the option "Refresh comparsion results after successful synchronization" I noticed that the events are not properly synced.
The source database shows for example:
Code: Select all
CREATE EVENT trees_snapshots_delete
ON SCHEDULE EVERY '1' MINUTE
STARTS '2011-05-20 03:00:00'
COMMENT 'delete not neccessary snapshots'
DO
BEGIN
DELETE FROM trees_snapshots WHERE keep = 0;
END
Code: Select all
CREATE EVENT trees_snapshots_delete
ON SCHEDULE EVERY '1' MINUTE
STARTS '2011-05-20 03:00:00'
COMMENT 'delete not neccessary snapshots'
DO
I'm using dbForge Studio for MySQL Professional Edition 5.0.60.
The database version is MySQL 5.1.53
additional information:
The corresponding project file of the event contains the missing code. But the schema compare window does not displaying it correctly.