I have a personal access token table with the following structure: public function up() { Schema::create(‘personal_access_tokens’, function (Blueprint $table) { $table->bigIncrements(‘…
Tag: uuid
Laravel UUID’s and their uniqueness?
I have two tables, one for lists and another that stores a history of lists that were created. These lists are very temporary and they can be deleted by numerous methods so I add a reason field on the history for that. Now both have a uuid field and I can generate an actual string to store with Laravel’s helper