initialize-schema-version-table.sql 669 B

1234567891011121314151617181920212223
  1. -- Licensed Materials - Property of IBM
  2. -- BI and PM: Mobile
  3. -- (C) Copyright IBM Corp. 2007, 2012
  4. -- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
  5. --
  6. -- Mobile database table creation scripts for IBM DB2 on z/OS.
  7. --
  8. -- Modifications:
  9. --
  10. -- 1) Change COGMOBDB to the desired database name.
  11. -- 2) Note: CCSID is an estimated value, your requirements may differ.
  12. -- MOB_SCHEMA_VERSION
  13. CREATE TABLE MOB_SCHEMA_VERSION (
  14. MAJOR int NOT NULL,
  15. MINOR int NOT NULL,
  16. SUBMINOR varchar (4)
  17. ) IN COGMOBDB.COGMOBTS CCSID UNICODE
  18. /
  19. INSERT INTO MOB_SCHEMA_VERSION (MAJOR, MINOR) values (0, 0)
  20. /