dbUpgrade5_0004-to-5_0005_informix.sql 707 B

123456789101112131415161718192021222324
  1. -- Licensed Materials - Property of IBM
  2. --
  3. -- BI and PM: CM
  4. --
  5. -- (C) Copyright IBM Corp. 2008, 2009, 2010, 2011
  6. --
  7. -- US Government Users Restricted Rights - Use, duplication or disclosure
  8. -- restricted by GSA ADP Schedule Contract with IBM Corp.
  9. --CMSCRIPT_UPGRADE_SKIP_COMMAND(5.00010102,5.0002)
  10. ALTER TABLE CMOBJPROPS31 ADD EVSAUDITLVL integer;
  11. --CMSCRIPT_UPGRADE_SKIP_COMMAND(5.00010102,5.0002)
  12. CREATE TABLE CMOBJPROPS74 (
  13. CMID integer not null,
  14. DEPLOYREFS clob,
  15. LAUNCHTYPE lvarchar (512),
  16. SPEC blob,
  17. PRIMARY KEY (CMID) CONSTRAINT PK_CMOBJPROPS74
  18. ) lock mode row;
  19. --CMSCRIPT_UPGRADE_SKIP_COMMAND(5.00010102,5.0002)
  20. create index CMSCRIPT_CS_IDIDX_LAUNCHTYPE on CMOBJPROPS74(LAUNCHTYPE);