12345678910111213141516171819202122 |
- -- Licensed Materials - Property of IBM
- --
- -- BI and PM: CM
- --
- -- (C) Copyright IBM Corp. 2019
- --
- -- US Government Users Restricted Rights - Use, duplication or disclosure
- -- restricted by GSA ADP Schedule Contract with IBM Corp.
- CREATE TABLE CMOBJPROPS92 (
- CMID integer NOT NULL,
- CONTYPE lvarchar(64),
- URI clob,
- SPEC clob,
- primary key (CMID) constraint PK_CMOBJPROPS92
- ) lock mode row;
- alter table CMOBJPROPS5 add DETAILTYPE lvarchar(64);
- alter table CMOBJPROPS5 add INFO clob;
- !RunCMScript CMUpgradeScript_resourceFolders_add.xml
|