| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 2 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php namespace Bedard\Webhooks\Updates; |
||
| 9 | public function up() |
||
| 10 | { |
||
| 11 | Schema::create('bedard_webhooks_logs', function($table) |
||
| 12 | { |
||
| 13 | $table->engine = 'InnoDB'; |
||
| 14 | $table->increments('id'); |
||
| 15 | $table->integer('hook_id')->unsigned()->index(); |
||
| 16 | $table->longText('output')->nullable(); |
||
| 17 | $table->text('referrer')->nullable(); |
||
| 18 | $table->integer('status_code')->nullable(); |
||
| 19 | $table->timestamps(); |
||
| 20 | }); |
||
| 21 | } |
||
| 22 | |||
| 29 |