increments('id'); $table->string('service_type', 50); $table->string('name'); $table->text('app_id')->nullable(); $table->text('app_secret')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('external_services'); } }