string('token')->unique()->primary(); $table->string('memo')->nullable(); $table->timestamp('last_used')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('application_apis'); } };