123456789101112131415161718 |
- -- 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 MS SQL 2000.
- -- 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)
- /
|