File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/resources/update Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 33 <addColumn tableName =" CI_RESULT" >
44 <column name =" QUEUED_TIME" type =" datetime" nullable =" true" />
55 <column name =" EXIT_CODE" type =" int" nullable =" true" />
6- <column name =" BUILD_SCRIPT" type =" text" />
6+ <column name =" BUILD_SCRIPT" type =" text" nullable = " true " />
77 </addColumn >
88 <sql >
99 UPDATE CI_RESULT SET QUEUED_TIME = START_TIME, BUILD_SCRIPT = ''
1414 <sql >
1515 UPDATE CI_RESULT SET EXIT_CODE = -1 WHERE STATUS = 'failure'
1616 </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 " />
2020</changeSet >
You can’t perform that action at this time.
0 commit comments