新增h2数据库初始化脚本

This commit is contained in:
thinkgem
2020-05-05 23:55:31 +08:00
parent a8a03427c9
commit 138bf66bf2
5 changed files with 1370 additions and 5 deletions

View File

@@ -29,14 +29,14 @@
<artifactId>mysql-connector-java</artifactId>
<scope>runtime</scope>
</dependency>
<!-- Oracle 11g
<!-- Oracle 11g -->
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc6</artifactId>
<version>11.2.0.3</version>
<scope>runtime</scope>
</dependency> -->
<!-- Oracle 12c -->
</dependency>
<!-- Oracle 12c
<dependency>
<groupId>com.oracle.ojdbc</groupId>
<artifactId>ojdbc8</artifactId>
@@ -46,8 +46,8 @@
<groupId>com.oracle.ojdbc</groupId>
<artifactId>orai18n</artifactId>
<scope>runtime</scope>
</dependency>
<!-- SqlServer 2008+ -->
</dependency> -->
<!-- SqlServer 2008 -->
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
@@ -65,6 +65,12 @@
<artifactId>postgresql</artifactId>
<scope>runtime</scope>
</dependency>
<!-- H2 DB
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<scope>runtime</scope>
</dependency> -->
<!-- Common -->
<dependency>