Skip to content

Commit

Permalink
ixed regression with long requests and replies
Browse files Browse the repository at this point in the history
  • Loading branch information
jaapjansma committed May 24, 2019
1 parent a997a77 commit 07d80b4
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions CMRF/PersistenceLayer/SQLPersistingCallFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,15 +45,17 @@ static function schema() {
),
'request' => array(
'description' => 'The request data sent',
'type' => 'long text',
'type' => 'text',
'size' => 'big',
'serialize' => FALSE,
'not null' => TRUE,
),
'reply' => array(
'description' => 'The reply data received',
'type' => 'long text',
'type' => 'text',
'size' => 'big',
'serialize' => FALSE,
'not null' => FALSE,
'not null' => TRUE,
),
'metadata' => array(
'description' => 'Custom metadata on the request',
Expand Down

0 comments on commit 07d80b4

Please sign in to comment.