id(); $table->string('name')->index(); $table->string('description')->nullable(); $table->string('api_token')->index()->unique(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('applications'); } };