Skip to content

Commit 79600e4

Browse files
committed
changed reference_id to be uuid
1 parent 43396d8 commit 79600e4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stubs/database/migrations/2014_10_13_000000_create_audit_trails_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public function up()
1313
$table->foreignUuid('user_id')->nullable()->constrained('users')->onDelete('cascade');
1414
$table->string('title');
1515
$table->text('link')->nullable();
16-
$table->foreignUuid('reference_id')->nullable();
16+
$table->uuid('reference_id')->nullable();
1717
$table->string('section');
1818
$table->string('type');
1919
$table->timestamps();

0 commit comments

Comments
 (0)