string('api_key')->nullable()->default(null)->after('email'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn(); }); } }