activiti.mysql.drop.engine.sql 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. drop index ACT_IDX_EXEC_BUSKEY on ACT_RU_EXECUTION;
  2. drop index ACT_IDX_TASK_CREATE on ACT_RU_TASK;
  3. drop index ACT_IDX_IDENT_LNK_USER on ACT_RU_IDENTITYLINK;
  4. drop index ACT_IDX_IDENT_LNK_GROUP on ACT_RU_IDENTITYLINK;
  5. drop index ACT_IDX_VARIABLE_TASK_ID on ACT_RU_VARIABLE;
  6. drop index ACT_IDX_INFO_PROCDEF on ACT_PROCDEF_INFO;
  7. alter table ACT_GE_BYTEARRAY
  8. drop FOREIGN KEY ACT_FK_BYTEARR_DEPL;
  9. alter table ACT_RU_EXECUTION
  10. drop FOREIGN KEY ACT_FK_EXE_PROCINST;
  11. alter table ACT_RU_EXECUTION
  12. drop FOREIGN KEY ACT_FK_EXE_PARENT;
  13. alter table ACT_RU_EXECUTION
  14. drop FOREIGN KEY ACT_FK_EXE_SUPER;
  15. alter table ACT_RU_EXECUTION
  16. drop FOREIGN KEY ACT_FK_EXE_PROCDEF;
  17. alter table ACT_RU_IDENTITYLINK
  18. drop FOREIGN KEY ACT_FK_TSKASS_TASK;
  19. alter table ACT_RU_IDENTITYLINK
  20. drop FOREIGN KEY ACT_FK_ATHRZ_PROCEDEF;
  21. alter table ACT_RU_TASK
  22. drop FOREIGN KEY ACT_FK_TASK_EXE;
  23. alter table ACT_RU_TASK
  24. drop FOREIGN KEY ACT_FK_TASK_PROCINST;
  25. alter table ACT_RU_TASK
  26. drop FOREIGN KEY ACT_FK_TASK_PROCDEF;
  27. alter table ACT_RU_VARIABLE
  28. drop FOREIGN KEY ACT_FK_VAR_EXE;
  29. alter table ACT_RU_VARIABLE
  30. drop FOREIGN KEY ACT_FK_VAR_PROCINST;
  31. alter table ACT_RU_VARIABLE
  32. drop FOREIGN KEY ACT_FK_VAR_BYTEARRAY;
  33. alter table ACT_RU_JOB
  34. drop FOREIGN KEY ACT_FK_JOB_EXCEPTION;
  35. alter table ACT_RU_EVENT_SUBSCR
  36. drop FOREIGN KEY ACT_FK_EVENT_EXEC;
  37. alter table ACT_RE_MODEL
  38. drop FOREIGN KEY ACT_FK_MODEL_SOURCE;
  39. alter table ACT_RE_MODEL
  40. drop FOREIGN KEY ACT_FK_MODEL_SOURCE_EXTRA;
  41. alter table ACT_RE_MODEL
  42. drop FOREIGN KEY ACT_FK_MODEL_DEPLOYMENT;
  43. alter table ACT_PROCDEF_INFO
  44. drop FOREIGN KEY ACT_FK_INFO_JSON_BA;
  45. alter table ACT_PROCDEF_INFO
  46. drop FOREIGN KEY ACT_FK_INFO_PROCDEF;
  47. drop index ACT_IDX_ATHRZ_PROCEDEF on ACT_RU_IDENTITYLINK;
  48. drop index ACT_IDX_EVENT_SUBSCR_CONFIG_ on ACT_RU_EVENT_SUBSCR;
  49. drop table if exists ACT_GE_PROPERTY;
  50. drop table if exists ACT_RU_VARIABLE;
  51. drop table if exists ACT_GE_BYTEARRAY;
  52. drop table if exists ACT_RE_DEPLOYMENT;
  53. drop table if exists ACT_RE_MODEL;
  54. drop table if exists ACT_RU_IDENTITYLINK;
  55. drop table if exists ACT_RU_TASK;
  56. drop table if exists ACT_RE_PROCDEF;
  57. drop table if exists ACT_RU_EXECUTION;
  58. drop table if exists ACT_RU_JOB;
  59. drop table if exists ACT_RU_EVENT_SUBSCR;
  60. drop table if exists ACT_EVT_LOG;
  61. drop table if exists ACT_PROCDEF_INFO;