We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
passport:install
1 parent c242d48 commit 63c8b66Copy full SHA for 63c8b66
src/Console/InstallCommand.php
@@ -56,7 +56,7 @@ protected function configureUuids()
56
config(['passport.client_uuids' => true]);
57
Passport::setClientUuids(true);
58
59
- $this->replaceInFile(config_path('passport.php'), 'false', 'true');
+ $this->replaceInFile(config_path('passport.php'), '\'client_uuids\' => false', '\'client_uuids\' => true');
60
$this->replaceInFile(database_path('migrations/2016_06_01_000001_create_oauth_auth_codes_table.php'), '$table->unsignedBigInteger(\'client_id\');', '$table->uuid(\'client_id\');');
61
$this->replaceInFile(database_path('migrations/2016_06_01_000002_create_oauth_access_tokens_table.php'), '$table->unsignedBigInteger(\'client_id\');', '$table->uuid(\'client_id\');');
62
$this->replaceInFile(database_path('migrations/2016_06_01_000004_create_oauth_clients_table.php'), '$table->bigIncrements(\'id\');', '$table->uuid(\'id\')->primary();');
0 commit comments