History for ${database.projectName} (${database.databaseName})

#foreach ($schemaDiff in $database.schemaDiffList)

Diff Date: ${schemaDiff.diffDate}

#if ($schemaDiff.hasComment())

${schemaDiff.comment}

#end #if ($schemaDiff.tableCount.hasDiff())

table count: ${schemaDiff.tableCount.displayForHtml}

#end #if (!$schemaDiff.addedTableDiffList.isEmpty())

Add Table

#end #if (!$schemaDiff.changedTableDiffList.isEmpty())

Change Table

#foreach ($tableDiff in $schemaDiff.changedTableDiffList) #if ($schemaDiff.isLatest())

${tableDiff.tableName}

#else

${tableDiff.tableName}

#end
#foreach ($handler in $tableDiff.nextPreviousValidList)
$handler.titleName()
$handler.provide().displayForHtml
#end #foreach ($content in $tableDiff.nestDiffContentOrderedList)
${content.titleName}
#if ($content.isChange())
#foreach ($nestDiff in $content.nestDiffList)
${nestDiff.keyName}
#foreach ($handler in $nestDiff.nextPreviousValidList)
$handler.titleName()$handler.provide().displayForHtml
#end #end
#else
    #foreach ($nestDiff in $content.nestDiffList)
  • ${nestDiff.keyName}
  • #end
#end #end
#end
#end #if (!$schemaDiff.deletedTableDiffList.isEmpty())

Delete Table

#end
#end