Skip to content

Instantly share code, notes, and snippets.

@ibayazit
Created October 7, 2022 08:44
Show Gist options
  • Save ibayazit/fbe2100c679295b1b631e29f0171c67f to your computer and use it in GitHub Desktop.
Save ibayazit/fbe2100c679295b1b631e29f0171c67f to your computer and use it in GitHub Desktop.
Laravel uuid migration.
<?php
...
use Illuminate\Database\Query\Expression;
...
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->uuid('id')->primary()->unique()->default(new Expression('(UUID())'));
...
});
}
...
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment