| 123456789101112131415 | 
							- -- Licensed Materials - Property of IBM
 
- -- BI and PM: Mobile
 
- -- (C) Copyright IBM Corp. 2007, 2012
 
- -- US Government Users Restricted Rights - Use, duplication or disclosure restricted by GSA ADP Schedule Contract with IBM Corp.
 
- --
 
- -- Mobile database table creation scripts for IBM Informix.
 
- -- MOB_SCHEMA_VERSION
 
- CREATE TABLE MOB_SCHEMA_VERSION (
 
- 	MAJOR int NOT NULL,
 
- 	MINOR int NOT NULL,
 
- 	SUBMINOR varchar (4)
 
- );
 
- INSERT INTO MOB_SCHEMA_VERSION (MAJOR, MINOR) values (0, 0);
 
 
  |