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.
1 parent bc4c0f3 commit 64439cdCopy full SHA for 64439cd
src/Drivers/MySQLDriver.php
@@ -78,7 +78,7 @@ public function createStorageForEntity(string $entityClass): void
78
79
Schema::create($tableName, function (Blueprint $table) {
80
$table->id();
81
- $table->bigInteger('entity_id')->unsigned();
+ $table->string('entity_id');
82
$table->string('action');
83
$table->json('old_values')->nullable();
84
$table->json('new_values')->nullable();
0 commit comments