Skip to content

Commit 411760d

Browse files
author
Gerald Unterrainer
committed
add tenant table
bump version
1 parent 93dc0db commit 411760d

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

Diff for: pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<dependency>
2626
<groupId>info.unterrainer.commons</groupId>
2727
<artifactId>jre-utils</artifactId>
28-
<version>0.1.9</version>
28+
<version>0.1.10</version>
2929
</dependency>
3030
<dependency>
3131
<groupId>info.unterrainer.commons</groupId>

Diff for: src/test/resources/db/info/unterrainer/commons/httpserver/changelog-1.xml

+22
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,26 @@
2727
</createTable>
2828
</changeSet>
2929

30+
<changeSet author="GUN" id="1.1">
31+
<createTable tableName="tenant"
32+
remarks="Contains all tenants.">
33+
<column name="id" type="BIGINT" autoIncrement="true">
34+
<constraints nullable="false" primaryKey="true"
35+
primaryKeyName="pk_tenant" unique="true"
36+
uniqueConstraintName="uc_tenant_id" />
37+
</column>
38+
39+
<column name="name" type="varchar(300)">
40+
<constraints nullable="true" />
41+
</column>
42+
43+
<column name="createdOn" type="TIMESTAMP(6)">
44+
<constraints nullable="true" />
45+
</column>
46+
<column name="editedOn" type="TIMESTAMP(6)">
47+
<constraints nullable="true" />
48+
</column>
49+
</createTable>
50+
</changeSet>
51+
3052
</databaseChangeLog>

0 commit comments

Comments
 (0)