initialize-schema-version-table.sql 500 B

12345678910111213141516
  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) NULL
  12. )
  13. INSERT INTO [MOB_SCHEMA_VERSION] ([MAJOR], [MINOR]) values (0, 0)