upgrade-02-026-to-02-027.sql 474 B

1234567891011
  1. -- Licensed Materials - Property of IBM
  2. -- BI and PM: Mobile
  3. -- (C) Copyright IBM Corp. 2012, 2013
  4. -- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  5. RENAME COLUMN MOB_USERS.CAM_ID to CAM_ID_OLD;
  6. ALTER TABLE MOB_USERS ADD CAM_ID LVARCHAR(1024);
  7. UPDATE MOB_USERS SET MOB_USERS.CAM_ID = MOB_USERS.CAM_ID_OLD;
  8. ALTER TABLE MOB_USERS DROP CAM_ID_OLD;
  9. ALTER TABLE MOB_BLOBS ADD TOTAL_BLOB_SIZE INT;