Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
butschster committed May 9, 2024
1 parent 4eb5bc2 commit 6d3694d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public function up(): void
->addColumn('key', 'string', ['nullable' => false, 'defaultValue' => null, 'size' => 50])
->addColumn('event', 'string', ['nullable' => false, 'defaultValue' => null, 'size' => 50])
->addColumn('url', 'text', ['nullable' => false, 'defaultValue' => null])
->addColumn('headers', 'json', ['nullable' => false, 'defaultValue' => ''])
->addColumn('headers', 'json', ['nullable' => false])
->addColumn('verify_ssl', 'boolean', ['nullable' => false, 'defaultValue' => false])
->addColumn('retry_on_failure', 'boolean', ['nullable' => false, 'defaultValue' => true])
->addIndex(['key'], ['name' => 'webhooks_index_key_663923eccdd6a', 'unique' => true])
Expand Down

0 comments on commit 6d3694d

Please sign in to comment.