File tree 2 files changed +23
-1
lines changed
src/test/resources/db/info/unterrainer/commons/httpserver
2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 25
25
<dependency >
26
26
<groupId >info.unterrainer.commons</groupId >
27
27
<artifactId >jre-utils</artifactId >
28
- <version >0.1.9 </version >
28
+ <version >0.1.10 </version >
29
29
</dependency >
30
30
<dependency >
31
31
<groupId >info.unterrainer.commons</groupId >
Original file line number Diff line number Diff line change 27
27
</createTable >
28
28
</changeSet >
29
29
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
+
30
52
</databaseChangeLog >
You can’t perform that action at this time.
0 commit comments