File tree Expand file tree Collapse file tree 2 files changed +23
-1
lines changed
src/test/resources/db/info/unterrainer/commons/httpserver Expand file tree Collapse file tree 2 files changed +23
-1
lines changed Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments