dbUpgrade7_0047-to-7_0048_informix.sql 447 B

1234567891011121314151617
  1. -- Licensed Materials - Property of IBM
  2. --
  3. -- BI and PM: CM
  4. --
  5. -- (C) Copyright IBM Corp. 2017
  6. --
  7. -- US Government Users Restricted Rights - Use, duplication or disclosure
  8. -- restricted by GSA ADP Schedule Contract with IBM Corp.
  9. create table CMTAGS (
  10. CMID integer not null,
  11. ORD integer not null,
  12. TAG lvarchar(256),
  13. primary key (CMID, ORD) constraint PK_CMTAGS
  14. ) lock mode row;
  15. create index IDX_CMTAGS on CMTAGS(CMID, TAG);