Code Monkey home page Code Monkey logo

Comments (5)

alejandrozepeda avatar alejandrozepeda commented on August 21, 2024 99

I'm using UUIDs as the primary key for my User model, the needed change is just export the default migration

php artisan vendor:publish --tag=sanctum-migrations

and change the tokenable field to

$table->uuidMorphs('tokenable');

from sanctum.

CrazyFreeMan avatar CrazyFreeMan commented on August 21, 2024 10

How use Sanctum when User model use uuid (type and PK name uuid) ?

Changed migration to:

      $table->string('tokenable_type');
      $table->uuid('tokenable_uuid');

In User model:

   public function tokens()
    {
        return $this->morphMany(Sanctum::$personalAccessTokenModel, 'tokenable', "tokenable_type", "tokenable_uuid");
    }

Extend PersonalAccessToken (need for set morph options)

namespace App\Models;

use Laravel\Sanctum\PersonalAccessToken as BasePersonalAccessToken;

class PersonalAccessToken extends BasePersonalAccessToken
{
    public function tokenable()
    {
        return $this->morphTo('tokenable', "tokenable_type", "tokenable_uuid");
    }
}

Then in AppServiceProvider set usePersonalAccessTokenModel

namespace App\Providers;

use App\Models\PersonalAccessToken;
use Illuminate\Support\ServiceProvider;
use Laravel\Sanctum\Sanctum;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     *
     * @return void
     */
    public function register()
    {
        Sanctum::usePersonalAccessTokenModel(PersonalAccessToken::class);
    }
///....
}

from sanctum.

abdelhadiyoucef avatar abdelhadiyoucef commented on August 21, 2024 5

use this in AppServiceProvider
public function boot()
{
Schema::defaultStringLength(191);
}

from sanctum.

netojose avatar netojose commented on August 21, 2024 2

I fixed doing:

1 - Changing sanctum migration, to:

$table->uuidMorphs('tokenable');

2 - Updating User model, adding:

public $incrementing = false;
protected $casts = ['id' => 'string'];

from sanctum.

driesvints avatar driesvints commented on August 21, 2024

Please fill out the issue template and share steps to reproduce the problem.

from sanctum.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.