upgrade-02-028-to-02-029.sql 488 B

12345678910111213141516
  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. DECLARE
  6. TABLE_DOES_NOT_EXIST_EXCEPTION EXCEPTION;
  7. PRAGMA EXCEPTION_INIT(TABLE_DOES_NOT_EXIST_EXCEPTION, -942);
  8. BEGIN
  9. EXECUTE IMMEDIATE 'ALTER TABLE MOB_RENDERS ADD PASSPORT varchar (100) NULL';
  10. EXCEPTION
  11. WHEN TABLE_DOES_NOT_EXIST_EXCEPTION THEN
  12. NULL;
  13. END;
  14. /