add message to exceptions table

This commit is contained in:
stefano 2020-01-27 12:19:14 +00:00
parent 47c14673c4
commit a3bc624e16
2 changed files with 6 additions and 0 deletions

View File

@ -86,6 +86,9 @@
<column name="exception_value" type="varbinary(33554432)">
<constraints nullable="false"/>
</column>
<column name="exception_message" type="NVARCHAR(512)">
<constraints nullable="false"/>
</column>
<column name="timestamp" type="java.sql.Types.TIMESTAMP">
<constraints nullable="false"/>
</column>

View File

@ -86,6 +86,9 @@
<column name="exception_value" type="blob">
<constraints nullable="false"/>
</column>
<column name="exception_message" type="NVARCHAR(512)">
<constraints nullable="false"/>
</column>
<column name="timestamp" type="java.sql.Types.TIMESTAMP">
<constraints nullable="false"/>
</column>