提交 39d849ba 编写于 作者: F falko.menge

Added missing table configuration of ACT_CY_PEOPLE_LINK in MySQL and improved...

Added missing table configuration of ACT_CY_PEOPLE_LINK in MySQL and improved drop statements for that table in MySQL and MSSQL
上级 b92bfbee
......@@ -46,7 +46,7 @@ create table ACT_CY_PEOPLE_LINK (
LINK_TYPE_ varchar(255),
COMMENT_ varchar(1000),
primary key(ID_)
);
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_bin;
create table ACT_CY_TAG (
ID_ varchar(255),
......
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_CY_CONFIG') drop table ACT_CY_CONFIG;
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_CY_LINK') drop table ACT_CY_LINK;
drop table ACT_CY_PEOPLE_LINK;
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_CY_PEOPLE_LINK') drop table ACT_CY_PEOPLE_LINK;
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_CY_TAG') drop table ACT_CY_TAG;
if exists (select TABLE_NAME from INFORMATION_SCHEMA.TABLES where TABLE_NAME = 'ACT_CY_COMMENT') drop table ACT_CY_COMMENT;
\ No newline at end of file
drop table if exists ACT_CY_CONN_CONFIG;
drop table if exists ACT_CY_CONFIG;
drop table if exists ACT_CY_LINK;
drop table ACT_CY_PEOPLE_LINK;
drop table if exists ACT_CY_PEOPLE_LINK;
drop table if exists ACT_CY_TAG;
drop table if exists ACT_CY_COMMENT;
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册