Skip to content
This repository has been archived by the owner on Oct 11, 2022. It is now read-only.

Commit

Permalink
1.0.2 - Fix MySQL strict-mode error
Browse files Browse the repository at this point in the history
  • Loading branch information
scottbedard committed Apr 5, 2016
1 parent 9219e02 commit 9cffd73
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion updates/create_logs_table.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ public function up()
Schema::create('bedard_webhooks_logs', function($table)
{
$table->engine = 'InnoDB';
$table->increments('id')->nullable();
$table->increments('id');
$table->integer('hook_id')->unsigned()->index();
$table->longText('output')->nullable();
$table->text('referrer')->nullable();
Expand Down
2 changes: 2 additions & 0 deletions updates/version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,5 @@
- First version of Webhook
- create_hooks_table.php
- create_logs_table.php

1.0.2: Fix MySQL strict-mode error

0 comments on commit 9cffd73

Please sign in to comment.