Project

General

Profile

Download (552 Bytes) Statistics
| Branch: | Tag: | Revision:
1
/* 
2
 * DDL file to generate the database schema for the H2 test database 
3
 */
4

    
5
-- These settings where taken from the original 001-cdm.h2.sql file:
6

    
7
SET CLUSTER '';
8
SET DEFAULT_TABLE_TYPE 0;
9
SET WRITE_DELAY 500;
10
SET DEFAULT_LOCK_TIMEOUT 2000;
11
SET CACHE_SIZE 16384;
12

    
13
CREATE USER IF NOT EXISTS EDIT PASSWORD '' ADMIN;
14
CREATE SEQUENCE PUBLIC.SYSTEM_SEQUENCE_10A55F0A_EE57_42DB_8046_6240A60AD0EC START WITH 4 BELONGS_TO_TABLE;
15

    
16
-- DDL generated by class DdlCreator using maven antrun plugin: 
17
-- ===========================================================
(2-2/3)