increments('id'); $table->string('name', 50); $table->string('description', 150); $table->string('url', 100); $table->float('priority'); $table->integer('category_id')->unsigned(); $table->foreign('category_id')->references('id')->on('bookmark__categories'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('bookmark__sites'); } };