Skip to content

Commit

Permalink
Tablo Names Bug Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Emrecan committed Dec 24, 2020
1 parent e9fe1db commit eda70a0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/NotificationTransport/Connection.php
Original file line number Diff line number Diff line change
Expand Up @@ -428,9 +428,9 @@ private function addTableToSchema(Schema $schema): void
->setNotnull(true);
$table->addColumn('event_template', Types::JSON)
->setNotnull(true);
$table->addColumn('headers', Types::LONGTEXT)
$table->addColumn('headers', Types::TEXT)
->setNotnull(true);
$table->addColumn('encoded_message', Types::LONGTEXT)
$table->addColumn('encoded_message', Types::TEXT)
->setNotnull(false);
$table->addColumn('provider_name', Types::STRING)
->setLength(50)
Expand Down

0 comments on commit eda70a0

Please sign in to comment.