1234567891011121314151617181920212223 |
- -- Licensed Materials - Property of IBM
- --
- -- BI and PM: CM
- --
- -- (C) Copyright IBM Corp. 2018
- --
- -- US Government Users Restricted Rights - Use, duplication or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- CREATE TABLE CMOBJPROPS89 (
- CMID int not null,
- DOCTYPE varchar(64) not null,
- DOCID varchar(64) not null,
- CONTENT ntext null,
- CONSTRAINT PK_CMOBJPROPS89 PRIMARY KEY (CMID)
- )
- create index IDX_CMPROPS89_1 on CMOBJPROPS89(DOCID)
- alter table CMOBJPROPS85 add OBJREFS ntext null
- !RunCMScript CMUpgradeScript_homeFolder_1.xml
|