Skip to content

Commit

Permalink
changed reference_id to be uuid
Browse files Browse the repository at this point in the history
  • Loading branch information
dcblogdev committed Mar 15, 2023
1 parent 43396d8 commit 79600e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public function up()
$table->foreignUuid('user_id')->nullable()->constrained('users')->onDelete('cascade');
$table->string('title');
$table->text('link')->nullable();
$table->foreignUuid('reference_id')->nullable();
$table->uuid('reference_id')->nullable();
$table->string('section');
$table->string('type');
$table->timestamps();
Expand Down

0 comments on commit 79600e4

Please sign in to comment.