gpt4 book ai didi

php - 使用 laravel-mongodb 配置 oauth2-server-laravel

转载 作者:可可西里 更新时间:2023-11-01 10:43:21 25 4
gpt4 key购买 nike

我正在尝试使用 oauth2-server-laravellaravel-mongodb .使用此命令生成迁移后 php artisan oauth2-server:migrations 我尝试使用 php artisan migrate。但是我得到了这个错误。

 [ErrorException]                                                             
Missing argument 1 for Illuminate\Database\Schema\Blueprint::primary(),
called in
/home/opu/www/cwc_penguins/app/database/migrations/2015_01_19_203037
_create_oauth_scopes_table.php on line 17 and defined

2015_01_19_203037_create_oauth_scopes_table.php 迁移代码在这里

<?php

use Illuminate\Database\Schema\Blueprint;
use LucaDegasperi\OAuth2Server\Support\Migration;

class CreateOauthScopesTable extends Migration
{

/**
* Run the migrations.
*
* @return void
*/
public function up()
{
$this->schema()->create('oauth_scopes', function (Blueprint $table) {
$table->string('id', 40)->primary();
$table->string('description');

$table->timestamps();
});
}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
$this->schema()->drop('oauth_scopes');
}
}

最佳答案

删除这个:

->primary()

它应该可以工作。

关于php - 使用 laravel-mongodb 配置 oauth2-server-laravel,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28039418/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com