Skip to content

Commit

Permalink
Add field 'exception_type' to 'Incident'.
Browse files Browse the repository at this point in the history
Signed-off-by: Dhananjay Nakrani <dhananjaynakrani@gmail.com>
  • Loading branch information
JayNakrani committed May 31, 2014
1 parent 58159ff commit 8012921
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions app/Config/Schema/schema.php
Expand Up @@ -41,6 +41,7 @@ public function after($event = array()) {
'stacktrace' => array('type' => 'text', 'null' => true, 'default' => null, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'full_report' => array('type' => 'text', 'null' => true, 'default' => null, 'collate' => 'utf8_general_ci', 'charset' => 'utf8'),
'report_id' => array('type' => 'integer', 'null' => false, 'default' => null, 'length' => 10),
'exception_type' => array('type' => 'boolean', 'null' => false, 'default' => '0', 'comment' => '0:js, 1:php'),
'created' => array('type' => 'datetime', 'null' => true, 'default' => null),
'modified' => array('type' => 'datetime', 'null' => true, 'default' => null),
'indexes' => array(
Expand Down

0 comments on commit 8012921

Please sign in to comment.