initialize-schema-version-table.sql 478 B

123456789101112131415161718
  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 MS SQL 2000.
  7. -- MOB_SCHEMA_VERSION
  8. CREATE TABLE MOB_SCHEMA_VERSION (
  9. MAJOR int NOT NULL,
  10. MINOR int NOT NULL,
  11. SUBMINOR varchar(4)
  12. )
  13. /
  14. INSERT INTO MOB_SCHEMA_VERSION (MAJOR, MINOR) values (0, 0)
  15. /