add if exists to mysql statements

This commit is contained in:
Claudio Barril 2014-01-19 12:33:08 -03:00
parent 2c26c3cdc0
commit d288787fdc

View File

@ -1,9 +1,9 @@
DROP TABLE TAG; DROP TABLE IF EXISTS TAG;
DROP TABLE ACCESS_AUDITORY; DROP TABLE IF EXISTS ACCESS_AUDITORY;
DROP TABLE COLLABORATION; DROP TABLE IF EXISTS COLLABORATION;
DROP TABLE COLLABORATION_PROPERTIES; DROP TABLE IF EXISTS COLLABORATION_PROPERTIES;
DROP TABLE MINDMAP_HISTORY; DROP TABLE IF EXISTS MINDMAP_HISTORY;
DROP TABLE MINDMAP; DROP TABLE IF EXISTS MINDMAP;
DROP TABLE USER; DROP TABLE IF EXISTS USER;
DROP TABLE COLLABORATOR; DROP TABLE IF EXISTS COLLABORATOR;
COMMIT; COMMIT;