3 use Illuminate\Database\Migrations\Migration;
4 use Illuminate\Database\Schema\Blueprint;
5 use Illuminate\Support\Facades\Schema;
7 class CreateWebhooksTable extends Migration
16 Schema::create('webhooks', function (Blueprint $table) {
17 $table->increments('id');
18 $table->string('name', 150);
19 $table->string('endpoint', 500);
25 * Reverse the migrations.
29 public function down()
31 Schema::dropIfExists('webhooks');