id(); $table->foreignIdFor(User::class); $table->string('name'); $table->string('path'); $table->longText('content'); $table->timestamps(); }); } /** * Reverse the migrations. */ public function down(): void { Schema::dropIfExists('scripts'); } };