unsignedInteger('timeout')->default(3); $table->text('last_error')->default(''); $table->timestamp('last_called_at')->nullable(); $table->timestamp('last_errored_at')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('webhooks', function (Blueprint $table) { $table->dropColumn('timeout'); $table->dropColumn('last_error'); $table->dropColumn('last_called_at'); $table->dropColumn('last_errored_at'); }); } }