File tree 1 file changed +4
-4
lines changed
src/main/resources/update
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 3
3
<addColumn tableName =" CI_RESULT" >
4
4
<column name =" QUEUED_TIME" type =" datetime" nullable =" true" />
5
5
<column name =" EXIT_CODE" type =" int" nullable =" true" />
6
- <column name =" BUILD_SCRIPT" type =" text" />
6
+ <column name =" BUILD_SCRIPT" type =" text" nullable = " true " />
7
7
</addColumn >
8
8
<sql >
9
9
UPDATE CI_RESULT SET QUEUED_TIME = START_TIME, BUILD_SCRIPT = ''
14
14
<sql >
15
15
UPDATE CI_RESULT SET EXIT_CODE = -1 WHERE STATUS = 'failure'
16
16
</sql >
17
- <addNotNullConstraint tableName =" CI_RESULT" columnName =" QUEUED_TIME" />
18
- <addNotNullConstraint tableName =" CI_RESULT" columnName =" EXIT_CODE" />
19
- <addNotNullConstraint tableName =" CI_RESULT" columnName =" BUILD_SCRIPT" />
17
+ <addNotNullConstraint tableName =" CI_RESULT" columnName =" QUEUED_TIME" columnDataType = " datetime " />
18
+ <addNotNullConstraint tableName =" CI_RESULT" columnName =" EXIT_CODE" columnDataType = " int " />
19
+ <addNotNullConstraint tableName =" CI_RESULT" columnName =" BUILD_SCRIPT" columnDataType = " text " />
20
20
</changeSet >
You can’t perform that action at this time.
0 commit comments