id(); $table->string('name'); $table->text('description')->nullable(); $table->string('url'); $table->unsignedBigInteger('category'); $table->foreign('category') ->references('id') ->on('bookmark__categories') ->onDelete('cascade'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('bookmarks'); } };