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