upgrade-02-029-to-03-000.sql 803 B

1234567891011121314151617
  1. -- Licensed Materials - Property of IBM
  2. -- BI and PM: Mobile
  3. -- (C) Copyright IBM Corp. 2013
  4. -- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  5. --
  6. -- Generated by: com.cognos.mobile.internal.server.database.schemagenerator.SchemaGenerator
  7. --
  8. -- Modify column [MOB_PORTALITEMS].[LABEL] to hold 100 UTF-8 characters; up to four bytes each.
  9. RENAME COLUMN MOB_PORTALITEMS.LABEL TO LABEL_old;
  10. ALTER TABLE MOB_PORTALITEMS ADD LABEL LVARCHAR(400);
  11. UPDATE MOB_PORTALITEMS SET MOB_PORTALITEMS.LABEL = MOB_PORTALITEMS.LABEL_old;
  12. ALTER TABLE MOB_PORTALITEMS DROP LABEL_old;
  13. CREATE TABLE MOB_RENDERS_BY_GROUP (
  14. RENDER_ID int NOT NULL,
  15. GROUP_ID lvarchar (1024) NOT NULL,
  16. FOREIGN KEY(RENDER_ID) REFERENCES MOB_RENDERS(RENDER_ID)
  17. );